示例#1
0
 def test_should_normalize_quoted_url(self):
     url = 'https%3A//www.google.ca/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'
     expected = 'https://www.google.ca/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'
     result = loader._normalize_url(url)
     expect(result).to_equal(expected)
 def test_should_normalize_quoted_url(self):
     url = 'https%3A//www.google.ca/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'
     expected = 'https://www.google.ca/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'
     result = loader._normalize_url(url)
     expect(result).to_equal(expected)
示例#3
0
 def test_should_normalize_url(self):
     expect(loader._normalize_url('https://some.url')).to_equal(
         'https://some.url')
     expect(loader._normalize_url('some.url')).to_equal('https://some.url')
示例#4
0
 def topic(self):
     return loader._normalize_url('httpsfake.some.url')
 def test_should_normalize_url(self):
     expect(loader._normalize_url('https://some.url')).to_equal('https://some.url')
     expect(loader._normalize_url('some.url')).to_equal('https://some.url')
示例#6
0
 def topic(self):
     return loader._normalize_url('some.url')
 def topic(self):
     return loader._normalize_url('httpsfake.some.url')
 def topic(self):
     return loader._normalize_url('some.url')
示例#9
0
 async def test_should_normalize_url(self):
     expect(loader._normalize_url("https://some.url")).to_equal(
         "https://some.url")
     expect(loader._normalize_url("some.url")).to_equal("https://some.url")
示例#10
0
 def test_should_normalize_url_but_keep_quotes_after_the_domain(self):
     for url in ['https://some.url/my image', 'some.url/my%20image']:
         expect(loader._normalize_url(url)).to_equal('https://some.url/my%20image')