Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove suffix from repo folder #341

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions nbgitpuller/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@
),
)

def _get_repo_basename(repo_parent_dir, repo):
repo_basename = os.path.splitext(os.path.basename(repo))[0]
local_repo_dir = os.path.join(repo_parent_dir, repo_basename)
# For backward compatibility
# restore .git extension
# if a repo with that name exists
if os.path.exists(local_repo_dir + ".git"):
repo_basename += ".git"
return repo_basename

class SyncHandler(JupyterHandler):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
Expand Down Expand Up @@ -78,7 +88,7 @@ async def get(self):
# must be expanded.
repo_parent_dir = os.path.join(os.path.expanduser(self.settings['server_root_dir']),
os.getenv('NBGITPULLER_PARENTPATH', ''))
repo_dir = os.path.join(repo_parent_dir, self.get_argument('targetpath', repo.split('/')[-1]))
repo_dir = os.path.join(repo_parent_dir, self.get_argument('targetpath', _get_repo_basename(repo_parent_dir, repo)))

# We gonna send out event streams!
self.set_header('content-type', 'text/event-stream')
Expand Down Expand Up @@ -154,8 +164,10 @@ async def get(self):
self.get_argument('subPath', '.')
app = self.get_argument('app', app_env)
parent_reldir = os.getenv('NBGITPULLER_PARENTPATH', '')
repo_parent_dir = os.path.join(os.path.expanduser(self.settings['server_root_dir']),
os.getenv('NBGITPULLER_PARENTPATH', ''))
targetpath = self.get_argument('targetpath', None) or \
self.get_argument('targetPath', repo.split('/')[-1])
self.get_argument('targetPath', _get_repo_basename(repo_parent_dir, repo))

if urlPath:
path = urlPath
Expand Down
50 changes: 50 additions & 0 deletions tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import tempfile
from http.client import HTTPConnection
import subprocess
import time
Expand Down Expand Up @@ -122,6 +123,55 @@ def test_clone_default(jupyterdir, jupyter_server):
assert os.path.isdir(os.path.join(target_path, '.git'))


def test_clone_suffix_dropped(jupyterdir, jupyter_server):
"""
Tests drop of .git suffix from source repo path.
"""
target = str(uuid4())
with Remote(path=os.path.join(tempfile.gettempdir(), target + '.git')) as remote, Pusher(remote) as pusher:
pusher.push_file('README.md', 'Testing some content')
print(f'path: {remote.path}')
params = {
'repo': remote.path,
'branch': 'master',
}
r = request_api(params)
assert r.code == 200
s = r.read().decode()
print(s)
target_path = os.path.join(jupyterdir, target)
assert f"Cloning into '{target_path}" in s
assert os.path.isdir(target_path)
assert not os.path.isdir(target_path + '.git')

def test_clone_suffix_dropped_legacy(jupyterdir, jupyter_server):
"""
Tests keep using legacy .git suffixed destination directory.
"""
with Remote() as remote, Pusher(remote) as pusher:
pusher.push_file('README.md', 'Testing some content')
print(f'path: {remote.path}')
params = {
'repo': remote.path,
'branch': 'master',
}
r = request_api(params)
assert r.code == 200
s = r.read().decode()
print(s)
target_path = os.path.join(jupyterdir, os.path.basename(remote.path))
assert f"Cloning into '{target_path}" in s
assert os.path.isdir(target_path)

# rename target and run puller again
# simulate a cloned repo with nbgitpuller previous version
os.rename(target_path, target_path + '.git')
r = request_api(params)
assert r.code == 200
s = r.read().decode()
print(s)
assert "Already up to date" in s

def test_clone_auth(jupyterdir, jupyter_server):
"""
Tests use of 'repo' and 'branch' parameters.
Expand Down