Exemple #1
0
 def test_get_url_from_config_with_paths(self):
     # app paths are taken into account
     config = get_config(path=None)
     config["DEFAULT"]["waeup_url"] = "http://sample.org/app"
     assert get_url_from_config(config) == (
         "http://*****:*****@sample.org/app")
Exemple #2
0
 def test_get_url_from_config_w_scheme(self):
     # a scheme set in waeup_url will be respected
     config = get_config(path=None)
     config["DEFAULT"]["waeup_url"] = "http://sample.org"
     assert get_url_from_config(config) == (
         "http://*****:*****@sample.org")
Exemple #3
0
 def test_get_url_from_config_changed_creds(self):
     # changed credentials are respected
     config = get_config(path=None)
     config["DEFAULT"]["waeup_user"] = "******"
     config["DEFAULT"]["waeup_passwd"] = "bar"
     assert get_url_from_config(config) == "https://*****:*****@localhost:8080"
Exemple #4
0
 def test_get_url_from_config(self):
     # we can get valid XMLRPCable URLs from default config
     config = get_config(path=None)  # get default config
     assert get_url_from_config(config) == (
         "https://*****:*****@localhost:8080")