コード例 #1
0
    def getConnector(self):
        server_url = flask.url_for('index', _external=True)

        c = get_connector('jfrog-artifactory')({
            'server_url': server_url,
            'repos': 'libs',
            'auth_type': 'basic',
            'auth': ('auth', 'password',),
        })

        return c
コード例 #2
0
def test_parse_list_extlibs():
    c = get_connector('jfrog-artifactory')({
        'server_url': 'localhost',
        'repos': 'libs',
        'auth_type': 'basic',
        'auth': ('auth', 'password',),
    })

    c.apply_scheme(repo_scheme_crosspm_simple)

    with open('repo_extlibs.json') as f:
        data = json.load(f)

    items = c.parse_list(data)

    assert items
コード例 #3
0
def test_get_connector():
    assert get_connector('jfrog-artifactory') is ConnectorJfrogArtifactory

    with pytest.raises(KeyError) as e:
        get_connector('some_name')