doctests.test_create_remote_repo module documentationdoctests
| Function | test_build_remote_script | >>> build_remote_script({'base': 'base', 'dir': 'dir', 'pkg': 'pkg', 'template-dir': None, 'bare': True}, 'branch') '\nset -e\numask 002\nif [ -d base"dir" ]; then\n echo "Repository at "basedir" already exists - giving up."\n exit 1\nfi\nmkdir -p base"dir"\ncd base"dir"\ngit init --shared --bare\necho "pkg packaging" > ./description\necho "ref: refs/heads/branch" > ./HEAD\n' |
| Function | test_build_remote_script_template_dir | >>> build_remote_script({'base': 'base', 'dir': 'dir', 'pkg': 'pkg', 'template-dir': '/doesnot/exist', 'bare': True}, 'branch') '\nset -e\numask 002\nif [ -d base"dir" ]; then\n echo "Repository at "basedir" already exists - giving up."\n exit 1\nfi\nmkdir -p base"dir"\ncd base"dir"\ngit init --shared --bare --template=/doesnot/exist\necho "pkg packaging" > ./description\necho "ref: refs/heads/branch" > ./HEAD\n' |
| Function | test_build_remote_script_bare | >>> build_remote_script({'base': 'base', 'dir': 'dir', 'pkg': 'pkg', 'template-dir': None, 'bare': False}, 'branch') '\nset -e\numask 002\nif [ -d base"dir" ]; then\n echo "Repository at "basedir" already exists - giving up."\n exit 1\nfi\nmkdir -p base"dir"\ncd base"dir"\ngit init --shared\necho "pkg packaging" > .git/description\necho "ref: refs/heads/branch" > .git/HEAD\n' |
| Function | test_parse_url | No summary |
>>> build_remote_script({'base': 'base', 'dir': 'dir', 'pkg': 'pkg', 'template-dir': None, 'bare': True}, 'branch')
'\nset -e\numask 002\nif [ -d base"dir" ]; then\n echo "Repository at "basedir" already exists - giving up."\n exit 1\nfi\nmkdir -p base"dir"\ncd base"dir"\ngit init --shared --bare\necho "pkg packaging" > ./description\necho "ref: refs/heads/branch" > ./HEAD\n'
>>> build_remote_script({'base': 'base', 'dir': 'dir', 'pkg': 'pkg', 'template-dir': '/doesnot/exist', 'bare': True}, 'branch')
'\nset -e\numask 002\nif [ -d base"dir" ]; then\n echo "Repository at "basedir" already exists - giving up."\n exit 1\nfi\nmkdir -p base"dir"\ncd base"dir"\ngit init --shared --bare --template=/doesnot/exist\necho "pkg packaging" > ./description\necho "ref: refs/heads/branch" > ./HEAD\n'
>>> build_remote_script({'base': 'base', 'dir': 'dir', 'pkg': 'pkg', 'template-dir': None, 'bare': False}, 'branch')
'\nset -e\numask 002\nif [ -d base"dir" ]; then\n echo "Repository at "basedir" already exists - giving up."\n exit 1\nfi\nmkdir -p base"dir"\ncd base"dir"\ngit init --shared\necho "pkg packaging" > .git/description\necho "ref: refs/heads/branch" > .git/HEAD\n'
>>> url = parse_url("ssh://host/path/%(pkg)s", "origin", "package")
>>> url['base']
''
>>> url['dir']
'/path/package'
>>> url['host']
'host'
>>> url['name']
'origin'
>>> url['pkg']
'package'
>>> url['port']
>>> url['scheme']
'ssh'
>>> url['template-dir']
>>> url['url']
'ssh://host/path/package'
>>> url = parse_url("ssh://host:22/path/to/repo.git", "origin", "package")
>>> url['base']
''
>>> url['dir']
'/path/to/repo.git'
>>> url['host']
'host'
>>> url['name']
'origin'
>>> url['pkg']
'package'
>>> url['port']
'22'
>>> url['scheme']
'ssh'
>>> url['template-dir']
>>> url['url']
'ssh://host:22/path/to/repo.git'
>>> url = parse_url("ssh://host:22/~/path/%(pkg)s.git", "origin", "package")
>>> url['dir']
'path/package.git'
>>> url['host']
'host'
>>> url['name']
'origin'
>>> url['pkg']
'package'
>>> url['port']
'22'
>>> url['scheme']
'ssh'
>>> url['template-dir']
>>> url['url']
'ssh://host:22/~/path/package.git'
>>> url['bare']
True
>>> url = parse_url("ssh://host:22/~user/path/%(pkg)s.git", "origin", "package", "/doesnot/exist", bare=False)
>>> url['dir']
'path/package.git'
>>> url['host']
'host'
>>> url['name']
'origin'
>>> url['pkg']
'package'
>>> url['port']
'22'
>>> url['scheme']
'ssh'
>>> url['template-dir']
'/doesnot/exist'
>>> url['url']
'ssh://host:22/~user/path/package.git'
>>> url['bare']
False
>>> parse_url("git://host/repo.git", "origin", "package")
Traceback (most recent call last):
...
gbp.errors.GbpError: URL must use ssh protocol.
>>> parse_url("ssh://host/path/repo", "origin", "package")
Traceback (most recent call last):
...
gbp.errors.GbpError: URL needs to contain either a repository name or '%(pkg)s'
>>> parse_url("ssh://host:asdf/path/%(pkg)s.git", "origin", "package")
Traceback (most recent call last):
...
gbp.errors.GbpError: URL contains invalid port.
>>> parse_url("ssh://host/~us er/path/%(pkg)s.git", "origin", "package")
Traceback (most recent call last):
...
gbp.errors.GbpError: URL contains invalid ~username expansion.