summaryrefslogtreecommitdiff
path: root/src/leap/base/tests/test_config.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-08-28 05:30:38 +0900
committerkali <kali@leap.se>2012-08-28 05:30:38 +0900
commit568d52ccf33e6d7683f36f5fe2e3c32b47892216 (patch)
tree0b40f9b9a79a0cf707dbf134fea14e45a4135186 /src/leap/base/tests/test_config.py
parent4a46723219e5284bec21b9dccd6589a670babc63 (diff)
eipchecker.fetch definition and tests
deprecated base:test_config.test_complete_file (dup functionality)
Diffstat (limited to 'src/leap/base/tests/test_config.py')
-rw-r--r--src/leap/base/tests/test_config.py37
1 files changed, 19 insertions, 18 deletions
diff --git a/src/leap/base/tests/test_config.py b/src/leap/base/tests/test_config.py
index 93de0782..54e4484c 100644
--- a/src/leap/base/tests/test_config.py
+++ b/src/leap/base/tests/test_config.py
@@ -59,26 +59,27 @@ class ProviderDefinitionTestCase(ProviderTest):
with open(os.path.join(path, 'eip.json'), 'w') as fp:
json.dump(eipconstants.EIP_SAMPLE_JSON, fp)
- def test_complete_file(self):
- with mock.patch.object(requests, "get") as mock_method:
- mock_method.return_value.status_code = 200
- mock_method.return_value.json = {
+ # moved to eip.test_checks.test_fetch_definition
+ #def test_complete_file(self):
+ #with mock.patch.object(requests, "get") as mock_method:
+ #mock_method.return_value.status_code = 200
+ #mock_method.return_value.json = {
#XXX get from providers template
- u'api_uri': u'https://api.testprovider.org/',
- u'api_version': u'0.1.0',
- u'ca_cert': u'8aab80ae4326fd30721689db813733783fe0bd7e',
- u'ca_cert_uri': u'https://testprovider.org/cacert.pem',
- u'description': {u'en': u'This is a test provider'},
- u'display_name': {u'en': u'Test Provider'},
- u'domain': u'testprovider.org',
- u'enrollment_policy': u'open',
- u'public_key': u'cb7dbd679f911e85bc2e51bd44afd7308ee19c21',
- u'serial': 1,
- u'services': [u'eip'],
- u'version': u'0.1.0'}
+ #u'api_uri': u'https://api.testprovider.org/',
+ #u'api_version': u'0.1.0',
+ #u'ca_cert': u'8aab80ae4326fd30721689db813733783fe0bd7e',
+ #u'ca_cert_uri': u'https://testprovider.org/cacert.pem',
+ #u'description': {u'en': u'This is a test provider'},
+ #u'display_name': {u'en': u'Test Provider'},
+ #u'domain': u'testprovider.org',
+ #u'enrollment_policy': u'open',
+ #u'public_key': u'cb7dbd679f911e85bc2e51bd44afd7308ee19c21',
+ #u'serial': 1,
+ #u'services': [u'eip'],
+ #u'version': u'0.1.0'}
# XXX why init to localhost?
- cf = config.Configuration("http://localhost/")
- self.assertIn('default', cf.providers)
+ #cf = config.Configuration("http://localhost/")
+ #self.assertIn('default', cf.providers)
#
# provider fetch tests block