예제 #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)
예제 #2
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)
예제 #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')
예제 #5
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')
예제 #6
0
 def topic(self):
     return loader._normalize_url('some.url')
예제 #7
0
 def topic(self):
     return loader._normalize_url('httpsfake.some.url')
예제 #8
0
 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')