コード例 #1
0
 def setup(self):
     self.uri = URI(
         'http://*****:*****@example.com:8080/foo?bar=baz#anchor'
     )
コード例 #2
0
def test_removing_only_keys_with_given_value_from_uri():
    uri = URI("http://example.com/foo?bar=baz&name=sue")
    assert uri.removeSearch(
        ['bar'], 'baz').toString() == "http://example.com/foo?name=sue"
コード例 #3
0
def test_removeQuery_is_same_as_removeSearch():
    uri = URI('http://example.com/foo?bar=baz')
    assert uri.removeQuery(['bar'
                            ]).toString() == uri.removeSearch(['bar'
                                                               ]).toString()
コード例 #4
0
def test_removing_multiple_search_keys_and_values_from_uri_given_keys():
    uri = URI('http://example.com/foo?bar=baz&sam=sue')
    assert uri.removeSearch(['bar',
                             'sam']).toString() == 'http://example.com/foo'
コード例 #5
0
def test_removing_search_value_and_key_from_uri_given_key():
    uri = URI('http://example.com/foo?bar=baz')
    assert uri.removeSearch(['bar']).toString() == 'http://example.com/foo'
コード例 #6
0
def test_fragment_parsed():
    # Not sure if this is a good uri w/ both query and fragment...
    fragment_uri = URI('http://example.com/foo?bar=baz#anchor')
    assert fragment_uri._fragment == 'anchor'
コード例 #7
0
def test_create_uri():
    simple_uri = URI('http://example.com/foo?bar=baz')
    assert simple_uri.toString() == 'http://example.com/foo?bar=baz'
コード例 #8
0
# Copyright (c) 2013, 2018 National Technology and Engineering Solutions of Sandia, LLC . Under the terms of Contract
# DE-NA0003525 with National Technology and Engineering Solutions of Sandia, LLC, the U.S. Government
# retains certain rights in this software.

import pytest
from slycat.uri import URI

auth_uri = URI('http://*****:*****@example.com:8080/foo?bar=baz')


def test_create_uri():
    simple_uri = URI('http://example.com/foo?bar=baz')
    assert simple_uri.toString() == 'http://example.com/foo?bar=baz'


def test_toString_same_as_valueOf():
    assert auth_uri.toString(
    ) == 'http://*****:*****@example.com:8080/foo?bar=baz'


def test_valueOf_returns_same_as_toString():
    assert auth_uri.valueOf() == auth_uri.toString()


def test_protocol_parsed():
    assert auth_uri.protocol() == 'http'


def test_scheme_is_same_as_protocol():
    assert auth_uri.scheme() == auth_uri.protocol()