Add template validation, fix categories

This commit is contained in:
James Oliver
2016-03-28 22:09:56 -07:00
parent 91ee360307
commit bc26eb978e
27 changed files with 81 additions and 28 deletions
+56 -4
View File
@@ -3,6 +3,8 @@ import cattle
import subprocess
import sys
import os
import re
# import yaml
def _base():
@@ -49,12 +51,33 @@ def catalog_service(catalog_bin):
return CatalogService(catalog_bin)
@pytest.fixture
@pytest.fixture(scope='session')
def client():
url = 'http://localhost:8088/v1-catalog/schemas'
return cattle.from_env(url=url)
@pytest.fixture(scope='session')
def templates(client):
templates = client.list_template()
assert len(templates) > 0
return templates
@pytest.fixture(scope='session')
def requests():
return requests.Session()
@pytest.fixture(scope='session')
def template_details(client, templates):
for template in templates:
template.versionDetails = {}
for version, link in template.versionLinks.iteritems():
template.versionDetails[version] = client._get(link)
return templates
def test_validate_exits_normal(catalog_service):
catalog_service.assert_retcode(
0, '-catalogUrl',
@@ -62,6 +85,35 @@ def test_validate_exits_normal(catalog_service):
'-validate', '-port', '18088')
def test_catalog_list(client):
templates = client.list_template()
assert len(templates) > 0
def test_stack_name(templates):
hostname_label = re.compile(r'^[a-zA-Z0-9\-]{1,63}$')
for template in templates:
# stack_name must be a valid hostname label
assert hostname_label.match(template.id.split(':')[-1].split('*')[-1])
def test_maintainers(templates):
maintainer = re.compile(r'^([\S]+ ){2,5}<[^@]+@[^@]+\.[^@]+>$')
for template in templates:
# Maintainer will soon be a requirement
# assert template.maintainer
if template.maintainer:
assert maintainer.match(template.maintainer)
def test_versions(templates):
for template in templates:
# default version must be defined
assert template.defaultVersion
# template with default version must be defined
assert template.versionLinks[template.defaultVersion]
def test_template_questions(template_details):
for template in template_details:
for _, template in template.versionDetails.iteritems():
# there must exist a rancher-compose.yml file
assert template.files['rancher-compose.yml']
# rancherConfig = yaml.load(template.files['rancher-compose.yml'])
# there must exist at least one question
# assert len(rancherConfig['.catalog']['questions']) > 0
+3 -2
View File
@@ -1,4 +1,5 @@
cattle==0.5.1
cattle==0.5.3
pyyaml==3.11
flake8
pytest==2.3.5
pytest==2.8.7