2018-08-06 19:31:52 +00:00
# -*- coding: UTF-8 -*-
2018-04-30 18:34:48 +00:00
#
# Copyright (C) 2017 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import os
2018-08-07 15:41:43 +00:00
from configparser import ConfigParser , NoOptionError
2018-10-01 21:47:49 +00:00
from contextlib import contextmanager
2018-04-30 18:34:48 +00:00
from glob import glob
2018-10-01 21:47:49 +00:00
from rpmfluff import SimpleRpmBuild , expectedArch
2018-04-30 18:34:48 +00:00
import shutil
import tempfile
import time
from threading import Lock
import unittest
from flask import json
import pytoml as toml
2018-05-03 21:22:40 +00:00
from pylorax . api . config import configure , make_dnf_dirs , make_queue_dirs
2018-08-08 14:57:46 +00:00
from pylorax . api . errors import * # pylint: disable=wildcard-import
2018-04-30 18:34:48 +00:00
from pylorax . api . queue import start_queue_monitor
from pylorax . api . recipes import open_or_create_repo , commit_recipe_directory
2018-10-01 21:47:49 +00:00
from pylorax . api . server import server , GitLock
from pylorax . api . dnfbase import DNFLock
2018-04-30 18:34:48 +00:00
from pylorax . sysutils import joinpaths
2018-08-06 19:31:52 +00:00
# Used for testing UTF-8 input support
2018-08-07 17:07:39 +00:00
UTF8_TEST_STRING = " I w 𝒊 ll 𝟉ο𝘁 𝛠 a 𝔰 ꜱ 𝘁 𝒉 𝝸 𝚜 "
2018-08-06 19:31:52 +00:00
2018-07-27 23:43:37 +00:00
def get_system_repo ( ) :
""" Get an enabled system repo from /etc/yum.repos.d/*repo
This will be used for test_projects_source_01_delete_system ( )
"""
# The sources delete test needs the name of a system repo, get it from /etc/yum.repos.d/
for sys_repo in sorted ( glob ( " /etc/yum.repos.d/*repo " ) ) :
2018-08-07 15:41:43 +00:00
cfg = ConfigParser ( )
2018-07-27 23:43:37 +00:00
cfg . read ( sys_repo )
for section in cfg . sections ( ) :
try :
if cfg . get ( section , " enabled " ) == " 1 " :
2018-08-07 16:20:16 +00:00
return section
2018-07-27 23:43:37 +00:00
except NoOptionError :
pass
# Failed to find one, fall back to using base
return " base "
2018-04-30 18:34:48 +00:00
class ServerTestCase ( unittest . TestCase ) :
@classmethod
def setUpClass ( self ) :
2018-05-30 22:13:02 +00:00
self . rawhide = False
2018-05-03 21:22:40 +00:00
self . maxDiff = None
2018-04-30 18:34:48 +00:00
repo_dir = tempfile . mkdtemp ( prefix = " lorax.test.repo. " )
server . config [ " REPO_DIR " ] = repo_dir
repo = open_or_create_repo ( server . config [ " REPO_DIR " ] )
server . config [ " GITLOCK " ] = GitLock ( repo = repo , lock = Lock ( ) , dir = repo_dir )
server . config [ " COMPOSER_CFG " ] = configure ( root_dir = repo_dir , test_config = True )
os . makedirs ( joinpaths ( server . config [ " COMPOSER_CFG " ] . get ( " composer " , " share_dir " ) , " composer " ) )
errors = make_queue_dirs ( server . config [ " COMPOSER_CFG " ] , 0 )
if errors :
raise RuntimeError ( " \n " . join ( errors ) )
2018-05-03 21:22:40 +00:00
make_dnf_dirs ( server . config [ " COMPOSER_CFG " ] )
2018-05-29 19:22:34 +00:00
# copy over the test dnf repositories
dnf_repo_dir = server . config [ " COMPOSER_CFG " ] . get ( " composer " , " repo_dir " )
for f in glob ( " ./tests/pylorax/repos/*.repo " ) :
shutil . copy2 ( f , dnf_repo_dir )
2018-05-30 22:13:02 +00:00
# Modify fedora vs. rawhide tests when running on rawhide
if os . path . exists ( " /etc/yum.repos.d/fedora-rawhide.repo " ) :
self . rawhide = True
2018-05-29 19:22:34 +00:00
# dnf repo baseurl has to point to an absolute directory, so we use /tmp/lorax-empty-repo/ in the files
# and create an empty repository
os . makedirs ( " /tmp/lorax-empty-repo/ " )
os . system ( " createrepo_c /tmp/lorax-empty-repo/ " )
2018-10-01 21:47:49 +00:00
server . config [ " DNFLOCK " ] = DNFLock ( server . config [ " COMPOSER_CFG " ] )
2018-04-30 18:34:48 +00:00
2018-07-12 22:26:21 +00:00
# Include a message in /api/status output
server . config [ " TEMPLATE_ERRORS " ] = [ " Test message " ]
2018-04-30 18:34:48 +00:00
server . config [ ' TESTING ' ] = True
self . server = server . test_client ( )
2018-05-08 16:25:44 +00:00
self . repo_dir = repo_dir
2018-04-30 18:34:48 +00:00
self . examples_path = " ./tests/pylorax/blueprints/ "
# Copy the shared files over to the directory tree we are using
share_path = " ./share/composer/ "
for f in glob ( joinpaths ( share_path , " * " ) ) :
shutil . copy ( f , joinpaths ( server . config [ " COMPOSER_CFG " ] . get ( " composer " , " share_dir " ) , " composer " ) )
# Import the example blueprints
commit_recipe_directory ( server . config [ " GITLOCK " ] . repo , " master " , self . examples_path )
2018-07-27 23:43:37 +00:00
# The sources delete test needs the name of a system repo, get it from /etc/yum.repos.d/
self . system_repo = get_system_repo ( )
2018-04-30 18:34:48 +00:00
start_queue_monitor ( server . config [ " COMPOSER_CFG " ] , 0 , 0 )
@classmethod
def tearDownClass ( self ) :
shutil . rmtree ( server . config [ " REPO_DIR " ] )
2018-05-29 19:22:34 +00:00
shutil . rmtree ( " /tmp/lorax-empty-repo/ " )
2018-04-30 18:34:48 +00:00
def test_01_status ( self ) :
""" Test the /api/status route """
2018-07-12 22:26:21 +00:00
status_fields = [ " build " , " api " , " db_version " , " schema_version " , " db_supported " , " backend " , " msgs " ]
2018-04-30 18:34:48 +00:00
resp = self . server . get ( " /api/status " )
data = json . loads ( resp . data )
2018-07-12 22:26:21 +00:00
# Make sure the fields are present
2018-04-30 18:34:48 +00:00
self . assertEqual ( sorted ( data . keys ( ) ) , sorted ( status_fields ) )
2018-07-12 22:26:21 +00:00
# Check for test message
self . assertEqual ( data [ " msgs " ] , [ " Test message " ] )
2018-04-30 18:34:48 +00:00
def test_02_blueprints_list ( self ) :
""" Test the /api/v0/blueprints/list route """
2018-08-21 22:08:58 +00:00
list_dict = { " blueprints " : [ " example-atlas " , " example-custom-base " , " example-development " ,
" example-glusterfs " , " example-http-server " , " example-jboss " ,
" example-kubernetes " ] , " limit " : 20 , " offset " : 0 , " total " : 7 }
2018-04-30 18:34:48 +00:00
resp = self . server . get ( " /api/v0/blueprints/list " )
data = json . loads ( resp . data )
self . assertEqual ( data , list_dict )
2018-08-23 23:17:33 +00:00
# Make sure limit=0 still returns the correct total
resp = self . server . get ( " /api/v0/blueprints/list?limit=0 " )
data = json . loads ( resp . data )
self . assertEqual ( data [ " limit " ] , 0 )
self . assertEqual ( data [ " offset " ] , 0 )
self . assertEqual ( data [ " total " ] , list_dict [ " total " ] )
2018-05-03 21:22:40 +00:00
def test_03_blueprints_info_1 ( self ) :
""" Test the /api/v0/blueprints/info route with one blueprint """
2018-08-21 22:08:58 +00:00
info_dict_1 = { " changes " : [ { " changed " : False , " name " : " example-http-server " } ] ,
2018-04-30 18:34:48 +00:00
" errors " : [ ] ,
" blueprints " : [ { " description " : " An example http server with PHP and MySQL support. " ,
" modules " : [ { " name " : " httpd " , " version " : " 2.4.* " } ,
2018-05-03 21:22:40 +00:00
{ " name " : " mod_auth_openid " , " version " : " 0.8 " } ,
2018-04-30 18:34:48 +00:00
{ " name " : " mod_ssl " , " version " : " 2.4.* " } ,
2018-09-07 15:46:57 +00:00
{ " name " : " php " , " version " : " 7.2.* " } ,
{ " name " : " php-mysqlnd " , " version " : " 7.2.* " } ] ,
2018-08-21 22:08:58 +00:00
" name " : " example-http-server " ,
2018-05-03 21:22:40 +00:00
" packages " : [ { " name " : " openssh-server " , " version " : " 7.* " } ,
2018-07-11 18:07:45 +00:00
{ " name " : " rsync " , " version " : " 3.1.* " } ,
2018-05-03 21:22:40 +00:00
{ " name " : " tmux " , " version " : " 2.7 " } ] ,
2018-07-11 18:07:45 +00:00
" groups " : [ ] ,
2018-04-30 18:34:48 +00:00
" version " : " 0.0.1 " } ] }
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-http-server " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertEqual ( data , info_dict_1 )
2018-05-03 21:22:40 +00:00
def test_03_blueprints_info_2 ( self ) :
""" Test the /api/v0/blueprints/info route with 2 blueprints """
2018-08-21 22:08:58 +00:00
info_dict_2 = { " changes " : [ { " changed " : False , " name " : " example-glusterfs " } ,
{ " changed " : False , " name " : " example-http-server " } ] ,
2018-04-30 18:34:48 +00:00
" errors " : [ ] ,
" blueprints " : [ { " description " : " An example GlusterFS server with samba " ,
2018-06-21 22:43:17 +00:00
" modules " : [ { " name " : " glusterfs " , " version " : " 4.1.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 4.1.* " } ] ,
2018-08-21 22:08:58 +00:00
" name " : " example-glusterfs " ,
2018-09-17 07:53:36 +00:00
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ] ,
2018-07-11 18:07:45 +00:00
" groups " : [ ] ,
2018-04-30 18:34:48 +00:00
" version " : " 0.0.1 " } ,
{ " description " : " An example http server with PHP and MySQL support. " ,
" modules " : [ { " name " : " httpd " , " version " : " 2.4.* " } ,
2018-05-03 21:22:40 +00:00
{ " name " : " mod_auth_openid " , " version " : " 0.8 " } ,
2018-04-30 18:34:48 +00:00
{ " name " : " mod_ssl " , " version " : " 2.4.* " } ,
2018-09-07 15:46:57 +00:00
{ " name " : " php " , " version " : " 7.2.* " } ,
{ " name " : " php-mysqlnd " , " version " : " 7.2.* " } ] ,
2018-08-21 22:08:58 +00:00
" name " : " example-http-server " ,
2018-05-03 21:22:40 +00:00
" packages " : [ { " name " : " openssh-server " , " version " : " 7.* " } ,
2018-07-11 18:07:45 +00:00
{ " name " : " rsync " , " version " : " 3.1.* " } ,
2018-05-03 21:22:40 +00:00
{ " name " : " tmux " , " version " : " 2.7 " } ] ,
2018-07-11 18:07:45 +00:00
" groups " : [ ] ,
2018-04-30 18:34:48 +00:00
" version " : " 0.0.1 " } ,
] }
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-http-server,example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertEqual ( data , info_dict_2 )
2018-05-03 21:22:40 +00:00
def test_03_blueprints_info_none ( self ) :
""" Test the /api/v0/blueprints/info route with an unknown blueprint """
2018-04-30 18:34:48 +00:00
info_dict_3 = { " changes " : [ ] ,
2018-08-08 19:41:40 +00:00
" errors " : [ { " id " : UNKNOWN_BLUEPRINT , " msg " : " missing-blueprint: No commits for missing-blueprint.toml on the master branch. " } ] ,
2018-04-30 18:34:48 +00:00
" blueprints " : [ ]
}
resp = self . server . get ( " /api/v0/blueprints/info/missing-blueprint " )
data = json . loads ( resp . data )
self . assertEqual ( data , info_dict_3 )
def test_04_blueprints_changes ( self ) :
""" Test the /api/v0/blueprints/changes route """
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/changes/example-http-server " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
# Can't compare a whole dict since commit hash and timestamps will change.
# Should have 1 commit (for now), with a matching message.
self . assertEqual ( data [ " limit " ] , 20 )
self . assertEqual ( data [ " offset " ] , 0 )
self . assertEqual ( len ( data [ " errors " ] ) , 0 )
self . assertEqual ( len ( data [ " blueprints " ] ) , 1 )
2018-08-21 22:08:58 +00:00
self . assertEqual ( data [ " blueprints " ] [ 0 ] [ " name " ] , " example-http-server " )
2018-04-30 18:34:48 +00:00
self . assertEqual ( len ( data [ " blueprints " ] [ 0 ] [ " changes " ] ) , 1 )
2018-08-23 23:17:33 +00:00
# Make sure limit=0 still returns the correct total
resp = self . server . get ( " /api/v0/blueprints/changes/example-http-server?limit=0 " )
data = json . loads ( resp . data )
self . assertEqual ( data [ " limit " ] , 0 )
self . assertEqual ( data [ " offset " ] , 0 )
self . assertEqual ( data [ " blueprints " ] [ 0 ] [ " total " ] , 1 )
2018-04-30 18:34:48 +00:00
def test_04a_blueprints_diff_empty_ws ( self ) :
""" Test the /api/v0/diff/NEWEST/WORKSPACE with empty workspace """
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/diff/example-glusterfs/NEWEST/WORKSPACE " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data , { " diff " : [ ] } )
def test_05_blueprints_new_json ( self ) :
""" Test the /api/v0/blueprints/new route with json blueprint """
test_blueprint = { " description " : " An example GlusterFS server with samba " ,
2018-08-21 22:08:58 +00:00
" name " : " example-glusterfs " ,
2018-04-30 18:34:48 +00:00
" version " : " 0.2.0 " ,
2018-06-21 22:43:17 +00:00
" modules " : [ { " name " : " glusterfs " , " version " : " 4.1.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 4.1.* " } ] ,
2018-09-17 07:53:36 +00:00
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ,
2018-07-11 18:07:45 +00:00
{ " name " : " tmux " , " version " : " 2.7 " } ] ,
" groups " : [ ] }
2018-04-30 18:34:48 +00:00
resp = self . server . post ( " /api/v0/blueprints/new " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] , test_blueprint )
def test_06_blueprints_new_toml ( self ) :
""" Test the /api/v0/blueprints/new route with toml blueprint """
2018-08-21 22:08:58 +00:00
test_blueprint = open ( joinpaths ( self . examples_path , " example-glusterfs.toml " ) , " rb " ) . read ( )
2018-04-30 18:34:48 +00:00
resp = self . server . post ( " /api/v0/blueprints/new " ,
data = test_blueprint ,
content_type = " text/x-toml " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertEqual ( len ( blueprints ) , 1 )
2018-05-03 21:22:40 +00:00
# Returned blueprint has had its version bumped
2018-04-30 18:34:48 +00:00
test_blueprint = toml . loads ( test_blueprint )
test_blueprint [ " version " ] = " 0.2.1 "
2018-07-11 18:07:45 +00:00
# The test_blueprint generated by toml.loads will not have any groups property
# defined, since there are no groups listed. However, /api/v0/blueprints/new will
# return an object with groups=[]. So, add that here to keep the equality test
# working.
test_blueprint [ " groups " ] = [ ]
2018-04-30 18:34:48 +00:00
self . assertEqual ( blueprints [ 0 ] , test_blueprint )
def test_07_blueprints_ws_json ( self ) :
""" Test the /api/v0/blueprints/workspace route with json blueprint """
test_blueprint = { " description " : " An example GlusterFS server with samba, ws version " ,
2018-08-21 22:08:58 +00:00
" name " : " example-glusterfs " ,
2018-04-30 18:34:48 +00:00
" version " : " 0.3.0 " ,
2018-06-21 22:43:17 +00:00
" modules " : [ { " name " : " glusterfs " , " version " : " 4.1.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 4.1.* " } ] ,
2018-09-17 07:53:36 +00:00
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ,
2018-07-11 18:07:45 +00:00
{ " name " : " tmux " , " version " : " 2.7 " } ] ,
" groups " : [ ] }
2018-04-30 18:34:48 +00:00
resp = self . server . post ( " /api/v0/blueprints/workspace " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] , test_blueprint )
changes = data . get ( " changes " )
self . assertEqual ( len ( changes ) , 1 )
2018-08-21 22:08:58 +00:00
self . assertEqual ( changes [ 0 ] , { " name " : " example-glusterfs " , " changed " : True } )
2018-04-30 18:34:48 +00:00
def test_08_blueprints_ws_toml ( self ) :
""" Test the /api/v0/blueprints/workspace route with toml blueprint """
test_blueprint = { " description " : " An example GlusterFS server with samba, ws version " ,
2018-08-21 22:08:58 +00:00
" name " : " example-glusterfs " ,
2018-04-30 18:34:48 +00:00
" version " : " 0.4.0 " ,
2018-06-21 22:43:17 +00:00
" modules " : [ { " name " : " glusterfs " , " version " : " 4.1.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 4.1.* " } ] ,
2018-09-17 07:53:36 +00:00
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ,
2018-07-11 18:07:45 +00:00
{ " name " : " tmux " , " version " : " 2.7 " } ] ,
" groups " : [ ] }
2018-04-30 18:34:48 +00:00
resp = self . server . post ( " /api/v0/blueprints/workspace " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] , test_blueprint )
changes = data . get ( " changes " )
self . assertEqual ( len ( changes ) , 1 )
2018-08-21 22:08:58 +00:00
self . assertEqual ( changes [ 0 ] , { " name " : " example-glusterfs " , " changed " : True } )
2018-04-30 18:34:48 +00:00
def test_09_blueprints_ws_delete ( self ) :
""" Test DELETE /api/v0/blueprints/workspace/<blueprint_name> """
# Write to the workspace first, just use the test_blueprints_ws_json test for this
self . test_07_blueprints_ws_json ( )
# Delete it
2018-08-21 22:08:58 +00:00
resp = self . server . delete ( " /api/v0/blueprints/workspace/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
# Make sure it isn't the workspace copy and that changed is False
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] [ " version " ] , " 0.2.1 " )
changes = data . get ( " changes " )
self . assertEqual ( len ( changes ) , 1 )
2018-08-21 22:08:58 +00:00
self . assertEqual ( changes [ 0 ] , { " name " : " example-glusterfs " , " changed " : False } )
2018-04-30 18:34:48 +00:00
def test_10_blueprints_delete ( self ) :
""" Test DELETE /api/v0/blueprints/delete/<blueprint_name> """
2018-08-21 22:08:58 +00:00
resp = self . server . delete ( " /api/v0/blueprints/delete/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
# Make sure example-glusterfs is no longer in the list of blueprints
2018-04-30 18:34:48 +00:00
resp = self . server . get ( " /api/v0/blueprints/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
2018-08-21 22:08:58 +00:00
self . assertEqual ( " example-glusterfs " in blueprints , False )
2018-04-30 18:34:48 +00:00
def test_11_blueprints_undo ( self ) :
""" Test POST /api/v0/blueprints/undo/<blueprint_name>/<commit> """
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/changes/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
# Revert it to the first commit
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
changes = blueprints [ 0 ] . get ( " changes " )
self . assertEqual ( len ( changes ) > 1 , True )
# Revert it to the first commit
commit = changes [ - 1 ] [ " commit " ]
2018-08-21 22:08:58 +00:00
resp = self . server . post ( " /api/v0/blueprints/undo/example-glusterfs/ %s " % commit )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/changes/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
changes = blueprints [ 0 ] . get ( " changes " )
self . assertEqual ( len ( changes ) > 1 , True )
2018-08-21 22:08:58 +00:00
expected_msg = " example-glusterfs.toml reverted to commit %s " % commit
2018-04-30 18:34:48 +00:00
self . assertEqual ( changes [ 0 ] [ " message " ] , expected_msg )
def test_12_blueprints_tag ( self ) :
""" Test POST /api/v0/blueprints/tag/<blueprint_name> """
2018-08-21 22:08:58 +00:00
resp = self . server . post ( " /api/v0/blueprints/tag/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/changes/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
# Revert it to the first commit
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
changes = blueprints [ 0 ] . get ( " changes " )
self . assertEqual ( len ( changes ) > 1 , True )
self . assertEqual ( changes [ 0 ] [ " revision " ] , 1 )
def test_13_blueprints_diff ( self ) :
""" Test /api/v0/blueprints/diff/<blueprint_name>/<from_commit>/<to_commit> """
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/changes/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
changes = blueprints [ 0 ] . get ( " changes " )
self . assertEqual ( len ( changes ) > = 2 , True )
from_commit = changes [ 1 ] . get ( " commit " )
self . assertNotEqual ( from_commit , None )
to_commit = changes [ 0 ] . get ( " commit " )
self . assertNotEqual ( to_commit , None )
2018-05-03 21:22:40 +00:00
print ( " from: %s " % from_commit )
print ( " to: %s " % to_commit )
print ( changes )
2018-04-30 18:34:48 +00:00
# Get the differences between the two commits
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/diff/example-glusterfs/ %s / %s " % ( from_commit , to_commit ) )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data , { " diff " : [ { " new " : { " Version " : " 0.0.1 " } , " old " : { " Version " : " 0.2.1 " } } ] } )
# Write to the workspace and check the diff
test_blueprint = { " description " : " An example GlusterFS server with samba, ws version " ,
2018-08-21 22:08:58 +00:00
" name " : " example-glusterfs " ,
2018-04-30 18:34:48 +00:00
" version " : " 0.3.0 " ,
2018-06-21 22:43:17 +00:00
" modules " : [ { " name " : " glusterfs " , " version " : " 4.1.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 4.1.* " } ] ,
2018-09-17 07:53:36 +00:00
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ,
2018-05-18 19:03:26 +00:00
{ " name " : " tmux " , " version " : " 2.7 " } ] }
2018-04-30 18:34:48 +00:00
resp = self . server . post ( " /api/v0/blueprints/workspace " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
# Get the differences between the newest commit and the workspace
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/diff/example-glusterfs/NEWEST/WORKSPACE " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
result = { " diff " : [ { " new " : { " Description " : " An example GlusterFS server with samba, ws version " } ,
" old " : { " Description " : " An example GlusterFS server with samba " } } ,
{ " new " : { " Version " : " 0.3.0 " } ,
" old " : { " Version " : " 0.0.1 " } } ,
2018-05-18 19:03:26 +00:00
{ " new " : { " Package " : { " version " : " 2.7 " , " name " : " tmux " } } ,
2018-04-30 18:34:48 +00:00
" old " : None } ] }
self . assertEqual ( data , result )
def test_14_blueprints_depsolve ( self ) :
""" Test /api/v0/blueprints/depsolve/<blueprint_names> """
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/depsolve/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
self . assertEqual ( len ( blueprints ) , 1 )
2018-08-21 22:08:58 +00:00
self . assertEqual ( blueprints [ 0 ] [ " blueprint " ] [ " name " ] , " example-glusterfs " )
2018-04-30 18:34:48 +00:00
self . assertEqual ( len ( blueprints [ 0 ] [ " dependencies " ] ) > 10 , True )
self . assertFalse ( data . get ( " errors " ) )
def test_14_blueprints_depsolve_empty ( self ) :
""" Test /api/v0/blueprints/depsolve/<blueprint_names> on empty blueprint """
test_blueprint = { " description " : " An empty blueprint " ,
" name " : " void " ,
" version " : " 0.1.0 " }
resp = self . server . post ( " /api/v0/blueprints/new " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
resp = self . server . get ( " /api/v0/blueprints/depsolve/void " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] [ " blueprint " ] [ " name " ] , " void " )
self . assertEqual ( blueprints [ 0 ] [ " blueprint " ] [ " packages " ] , [ ] )
self . assertEqual ( blueprints [ 0 ] [ " blueprint " ] [ " modules " ] , [ ] )
self . assertEqual ( blueprints [ 0 ] [ " dependencies " ] , [ ] )
self . assertFalse ( data . get ( " errors " ) )
def test_15_blueprints_freeze ( self ) :
""" Test /api/v0/blueprints/freeze/<blueprint_names> """
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/freeze/example-glusterfs " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
self . assertEqual ( len ( blueprints ) , 1 )
2018-05-18 19:03:26 +00:00
self . assertTrue ( len ( blueprints [ 0 ] [ " blueprint " ] [ " modules " ] ) > 0 )
2018-08-21 22:08:58 +00:00
self . assertEqual ( blueprints [ 0 ] [ " blueprint " ] [ " name " ] , " example-glusterfs " )
2018-04-30 18:34:48 +00:00
evra = blueprints [ 0 ] [ " blueprint " ] [ " modules " ] [ 0 ] [ " version " ]
self . assertEqual ( len ( evra ) > 10 , True )
def test_projects_list ( self ) :
""" Test /api/v0/projects/list """
resp = self . server . get ( " /api/v0/projects/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
projects = data . get ( " projects " )
self . assertEqual ( len ( projects ) > 10 , True )
2018-08-23 23:17:33 +00:00
expected_total = data [ " total " ]
# Make sure limit=0 still returns the correct total
resp = self . server . get ( " /api/v0/projects/list?limit=0 " )
data = json . loads ( resp . data )
self . assertEqual ( data [ " total " ] , expected_total )
2018-04-30 18:34:48 +00:00
def test_projects_info ( self ) :
""" Test /api/v0/projects/info/<project_names> """
resp = self . server . get ( " /api/v0/projects/info/bash " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
projects = data . get ( " projects " )
2018-06-21 23:09:07 +00:00
self . assertEqual ( len ( projects ) > 0 , True )
2018-04-30 18:34:48 +00:00
self . assertEqual ( projects [ 0 ] [ " name " ] , " bash " )
self . assertEqual ( projects [ 0 ] [ " builds " ] [ 0 ] [ " source " ] [ " license " ] , " GPLv3+ " )
def test_projects_depsolve ( self ) :
""" Test /api/v0/projects/depsolve/<project_names> """
resp = self . server . get ( " /api/v0/projects/depsolve/bash " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
deps = data . get ( " projects " )
self . assertEqual ( len ( deps ) > 10 , True )
2018-07-11 18:07:45 +00:00
self . assertTrue ( " basesystem " in [ dep [ " name " ] for dep in deps ] )
2018-04-30 18:34:48 +00:00
2018-05-29 19:22:34 +00:00
def test_projects_source_00_list ( self ) :
""" Test /api/v0/projects/source/list """
resp = self . server . get ( " /api/v0/projects/source/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
2018-08-07 16:20:16 +00:00
# Make sure it lists some common sources
for r in [ " lorax-1 " , " lorax-2 " , " lorax-3 " , " lorax-4 " , " other-repo " , " single-repo " ] :
self . assertTrue ( r in data [ " sources " ] )
2018-05-29 19:22:34 +00:00
def test_projects_source_00_info ( self ) :
""" Test /api/v0/projects/source/info """
resp = self . server . get ( " /api/v0/projects/source/info/single-repo " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
sources = data [ " sources " ]
self . assertTrue ( " single-repo " in sources )
def test_projects_source_00_new_json ( self ) :
""" Test /api/v0/projects/source/new with a new json source """
json_source = open ( " ./tests/pylorax/source/test-repo.json " ) . read ( )
self . assertTrue ( len ( json_source ) > 0 )
resp = self . server . post ( " /api/v0/projects/source/new " ,
data = json_source ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-05-30 16:48:37 +00:00
# Is it listed?
resp = self . server . get ( " /api/v0/projects/source/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
sources = data [ " sources " ]
self . assertTrue ( " new-repo-1 " in sources )
2018-05-29 19:22:34 +00:00
def test_projects_source_00_new_toml ( self ) :
""" Test /api/v0/projects/source/new with a new toml source """
toml_source = open ( " ./tests/pylorax/source/test-repo.toml " ) . read ( )
self . assertTrue ( len ( toml_source ) > 0 )
resp = self . server . post ( " /api/v0/projects/source/new " ,
data = toml_source ,
content_type = " text/x-toml " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-05-30 16:48:37 +00:00
# Is it listed?
resp = self . server . get ( " /api/v0/projects/source/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
sources = data [ " sources " ]
self . assertTrue ( " new-repo-2 " in sources )
2018-05-29 19:22:34 +00:00
def test_projects_source_00_replace ( self ) :
""" Test /api/v0/projects/source/new with a replacement source """
toml_source = open ( " ./tests/pylorax/source/replace-repo.toml " ) . read ( )
self . assertTrue ( len ( toml_source ) > 0 )
resp = self . server . post ( " /api/v0/projects/source/new " ,
data = toml_source ,
content_type = " text/x-toml " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
# Check to see if it was really changed
resp = self . server . get ( " /api/v0/projects/source/info/single-repo " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
sources = data [ " sources " ]
self . assertTrue ( " single-repo " in sources )
repo = sources [ " single-repo " ]
self . assertEqual ( repo [ " check_ssl " ] , False )
self . assertTrue ( " gpgkey_urls " not in repo )
2018-05-30 22:13:02 +00:00
def test_projects_source_00_bad_url ( self ) :
""" Test /api/v0/projects/source/new with a new source that has an invalid url """
toml_source = open ( " ./tests/pylorax/source/bad-repo.toml " ) . read ( )
self . assertTrue ( len ( toml_source ) > 0 )
resp = self . server . post ( " /api/v0/projects/source/new " ,
data = toml_source ,
content_type = " text/x-toml " )
2018-05-31 17:02:54 +00:00
self . assertEqual ( resp . status_code , 400 )
2018-05-30 22:13:02 +00:00
data = json . loads ( resp . data )
self . assertEqual ( data [ " status " ] , False )
2018-05-29 19:22:34 +00:00
def test_projects_source_01_delete_system ( self ) :
""" Test /api/v0/projects/source/delete a system source """
2018-05-30 22:13:02 +00:00
if self . rawhide :
resp = self . server . delete ( " /api/v0/projects/source/delete/rawhide " )
else :
resp = self . server . delete ( " /api/v0/projects/source/delete/fedora " )
2018-05-31 17:02:54 +00:00
self . assertEqual ( resp . status_code , 400 )
2018-05-29 19:22:34 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False )
2018-05-30 22:13:02 +00:00
# Make sure fedora/rawhide is still listed
2018-05-29 19:22:34 +00:00
resp = self . server . get ( " /api/v0/projects/source/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
2018-07-27 22:47:22 +00:00
self . assertTrue ( self . system_repo in data [ " sources " ] , " %s not in %s " % ( self . system_repo , data [ " sources " ] ) )
2018-05-29 19:22:34 +00:00
def test_projects_source_02_delete_single ( self ) :
""" Test /api/v0/projects/source/delete a single source """
resp = self . server . delete ( " /api/v0/projects/source/delete/single-repo " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data , { " status " : True } )
# Make sure single-repo isn't listed
resp = self . server . get ( " /api/v0/projects/source/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertTrue ( " single-repo " not in data [ " sources " ] )
def test_projects_source_03_delete_unknown ( self ) :
""" Test /api/v0/projects/source/delete an unknown source """
resp = self . server . delete ( " /api/v0/projects/source/delete/unknown-repo " )
2018-05-31 17:02:54 +00:00
self . assertEqual ( resp . status_code , 400 )
2018-05-29 19:22:34 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False )
def test_projects_source_04_delete_multi ( self ) :
""" Test /api/v0/projects/source/delete a source from a file with multiple sources """
resp = self . server . delete ( " /api/v0/projects/source/delete/lorax-3 " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data , { " status " : True } )
# Make sure single-repo isn't listed
resp = self . server . get ( " /api/v0/projects/source/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertTrue ( " lorax-3 " not in data [ " sources " ] )
2018-04-30 18:34:48 +00:00
def test_modules_list ( self ) :
""" Test /api/v0/modules/list """
resp = self . server . get ( " /api/v0/modules/list " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
modules = data . get ( " modules " )
self . assertEqual ( len ( modules ) > 10 , True )
self . assertEqual ( modules [ 0 ] [ " group_type " ] , " rpm " )
2018-08-23 23:17:33 +00:00
expected_total = data [ " total " ]
2018-04-30 18:34:48 +00:00
resp = self . server . get ( " /api/v0/modules/list/d* " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
modules = data . get ( " modules " )
self . assertEqual ( len ( modules ) > 0 , True )
self . assertEqual ( modules [ 0 ] [ " name " ] . startswith ( " d " ) , True )
2018-08-23 23:17:33 +00:00
# Make sure limit=0 still returns the correct total
resp = self . server . get ( " /api/v0/modules/list?limit=0 " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " total " ] , expected_total )
2018-04-30 18:34:48 +00:00
def test_modules_info ( self ) :
""" Test /api/v0/modules/info """
resp = self . server . get ( " /api/v0/modules/info/bash " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
modules = data . get ( " modules " )
2018-06-21 23:09:07 +00:00
self . assertEqual ( len ( modules ) > 0 , True )
2018-04-30 18:34:48 +00:00
self . assertEqual ( modules [ 0 ] [ " name " ] , " bash " )
2018-07-11 18:07:45 +00:00
self . assertTrue ( " basesystem " in [ dep [ " name " ] for dep in modules [ 0 ] [ " dependencies " ] ] )
2018-04-30 18:34:48 +00:00
def test_blueprint_new_branch ( self ) :
""" Test the /api/v0/blueprints/new route with a new branch """
test_blueprint = { " description " : " An example GlusterFS server with samba " ,
2018-08-21 22:08:58 +00:00
" name " : " example-glusterfs " ,
2018-04-30 18:34:48 +00:00
" version " : " 0.2.0 " ,
2018-06-21 22:43:17 +00:00
" modules " : [ { " name " : " glusterfs " , " version " : " 4.1.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 4.1.* " } ] ,
2018-09-17 07:53:36 +00:00
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ,
2018-07-11 18:07:45 +00:00
{ " name " : " tmux " , " version " : " 2.7 " } ] ,
" groups " : [ ] }
2018-04-30 18:34:48 +00:00
resp = self . server . post ( " /api/v0/blueprints/new?branch=test " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-glusterfs?branch=test " )
2018-04-30 18:34:48 +00:00
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] , test_blueprint )
def assert_documentation ( self , response ) :
"""
Assert response containing documentation from / api / doc / is
valid * without * comparing to the actual file on disk .
"""
self . assertEqual ( 200 , response . status_code )
self . assertTrue ( len ( response . data ) > 1024 )
# look for some well known strings inside the documentation
2018-05-03 21:22:40 +00:00
self . assertRegex ( response . data . decode ( " utf-8 " ) , r " Lorax [ \ d.]+ documentation " )
self . assertRegex ( response . data . decode ( " utf-8 " ) , r " Copyright \ d+, Red Hat, Inc. " )
2018-04-30 18:34:48 +00:00
def test_api_docs ( self ) :
""" Test the /api/docs/ """
resp = self . server . get ( " /api/docs/ " )
self . assert_documentation ( resp )
def test_api_docs_with_existing_path ( self ) :
""" Test the /api/docs/modules.html """
resp = self . server . get ( " /api/docs/modules.html " )
self . assert_documentation ( resp )
def wait_for_status ( self , uuid , wait_status ) :
""" Helper function that waits for a status
: param uuid : UUID of the build to check
: type uuid : str
: param wait_status : List of statuses to exit on
: type wait_status : list of str
: returns : True if status was found , False if it timed out
: rtype : bool
This will time out after 60 seconds
"""
start = time . time ( )
while True :
resp = self . server . get ( " /api/v0/compose/info/ %s " % uuid )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
queue_status = data . get ( " queue_status " )
if queue_status in wait_status :
return True
if time . time ( ) > start + 60 :
return False
2018-05-29 19:22:34 +00:00
time . sleep ( 1 )
2018-04-30 18:34:48 +00:00
def test_compose_01_types ( self ) :
""" Test the /api/v0/compose/types route """
resp = self . server . get ( " /api/v0/compose/types " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( { " name " : " tar " , " enabled " : True } in data [ " types " ] , True )
def test_compose_02_bad_type ( self ) :
""" Test that using an unsupported image type failes """
2018-08-21 22:08:58 +00:00
test_compose = { " blueprint_name " : " example-glusterfs " ,
2018-04-30 18:34:48 +00:00
" compose_type " : " snakes " ,
" branch " : " master " }
resp = self . server . post ( " /api/v0/compose?test=1 " ,
data = json . dumps ( test_compose ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False , " Failed to fail to start test compose: %s " % data )
2018-09-28 19:22:54 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : BAD_COMPOSE_TYPE , " msg " : " Invalid compose type (snakes), must be one of [ ' ami ' , ' ext4-filesystem ' , ' live-iso ' , ' partitioned-disk ' , ' qcow2 ' , ' tar ' , ' vhd ' , ' vmdk ' ] " } ] ,
2018-04-30 18:34:48 +00:00
" Failed to get errors: %s " % data )
def test_compose_03_status_fail ( self ) :
""" Test that requesting a status for a bad uuid is empty """
resp = self . server . get ( " /api/v0/compose/status/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " uuids " ] , [ ] , " Failed to get empty result bad uuid: %s " % data )
def test_compose_04_cancel_fail ( self ) :
""" Test that requesting a cancel for a bad uuid fails. """
resp = self . server . delete ( " /api/v0/compose/cancel/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False , " Failed to get an error for a bad uuid: %s " % data )
2018-08-08 14:57:46 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : UNKNOWN_UUID , " msg " : " NO-UUID-TO-SEE-HERE is not a valid build uuid " } ] ,
" Failed to get errors: %s " % data )
2018-04-30 18:34:48 +00:00
def test_compose_05_delete_fail ( self ) :
""" Test that requesting a delete for a bad uuid fails. """
resp = self . server . delete ( " /api/v0/compose/delete/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
2018-08-08 14:57:46 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : UNKNOWN_UUID , " msg " : " no-uuid-to-see-here is not a valid build uuid " } ] ,
2018-04-30 18:34:48 +00:00
" Failed to get an error for a bad uuid: %s " % data )
def test_compose_06_info_fail ( self ) :
""" Test that requesting info for a bad uuid fails. """
resp = self . server . get ( " /api/v0/compose/info/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False , " Failed to get an error for a bad uuid: %s " % data )
2018-08-08 14:57:46 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : UNKNOWN_UUID , " msg " : " NO-UUID-TO-SEE-HERE is not a valid build uuid " } ] ,
2018-04-30 18:34:48 +00:00
" Failed to get errors: %s " % data )
def test_compose_07_metadata_fail ( self ) :
""" Test that requesting metadata for a bad uuid fails. """
resp = self . server . get ( " /api/v0/compose/metadata/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False , " Failed to get an error for a bad uuid: %s " % data )
2018-08-08 14:57:46 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : UNKNOWN_UUID , " msg " : " NO-UUID-TO-SEE-HERE is not a valid build uuid " } ] ,
2018-04-30 18:34:48 +00:00
" Failed to get errors: %s " % data )
def test_compose_08_results_fail ( self ) :
""" Test that requesting results for a bad uuid fails. """
resp = self . server . get ( " /api/v0/compose/results/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False , " Failed to get an error for a bad uuid: %s " % data )
2018-08-08 14:57:46 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : UNKNOWN_UUID , " msg " : " NO-UUID-TO-SEE-HERE is not a valid build uuid " } ] ,
" Failed to get errors: %s " % data )
2018-04-30 18:34:48 +00:00
def test_compose_09_logs_fail ( self ) :
""" Test that requesting logs for a bad uuid fails. """
resp = self . server . get ( " /api/v0/compose/logs/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False , " Failed to get an error for a bad uuid: %s " % data )
2018-08-08 14:57:46 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : UNKNOWN_UUID , " msg " : " NO-UUID-TO-SEE-HERE is not a valid build uuid " } ] ,
2018-04-30 18:34:48 +00:00
" Failed to get errors: %s " % data )
def test_compose_10_log_fail ( self ) :
""" Test that requesting log for a bad uuid fails. """
resp = self . server . get ( " /api/v0/compose/log/NO-UUID-TO-SEE-HERE " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , False , " Failed to get an error for a bad uuid: %s " % data )
2018-08-08 14:57:46 +00:00
self . assertEqual ( data [ " errors " ] , [ { " id " : UNKNOWN_UUID , " msg " : " NO-UUID-TO-SEE-HERE is not a valid build uuid " } ] ,
2018-04-30 18:34:48 +00:00
" Failed to get errors: %s " % data )
def test_compose_11_create_failed ( self ) :
""" Test the /api/v0/compose routes with a failed test compose """
2018-08-21 22:08:58 +00:00
test_compose = { " blueprint_name " : " example-glusterfs " ,
2018-04-30 18:34:48 +00:00
" compose_type " : " tar " ,
" branch " : " master " }
resp = self . server . post ( " /api/v0/compose?test=1 " ,
data = json . dumps ( test_compose ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , True , " Failed to start test compose: %s " % data )
build_id = data [ " build_id " ]
# Is it in the queue list (either new or run is fine, based on timing)
resp = self . server . get ( " /api/v0/compose/queue " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " new " ] + data [ " run " ] ]
self . assertEqual ( build_id in ids , True , " Failed to add build to the queue " )
# Wait for it to start
self . assertEqual ( self . wait_for_status ( build_id , [ " RUNNING " ] ) , True , " Failed to start test compose " )
# Wait for it to finish
self . assertEqual ( self . wait_for_status ( build_id , [ " FAILED " ] ) , True , " Failed to finish test compose " )
resp = self . server . get ( " /api/v0/compose/info/ %s " % build_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " queue_status " ] , " FAILED " , " Build not in FAILED state " )
# Test the /api/v0/compose/failed route
resp = self . server . get ( " /api/v0/compose/failed " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " failed " ] ]
self . assertEqual ( build_id in ids , True , " Failed build not listed by /compose/failed " )
# Test the /api/v0/compose/finished route
resp = self . server . get ( " /api/v0/compose/finished " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " finished " ] , [ ] , " Finished build not listed by /compose/finished " )
# Test the /api/v0/compose/status/<uuid> route
resp = self . server . get ( " /api/v0/compose/status/ %s " % build_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ ( e [ " id " ] , e [ " queue_status " ] ) for e in data [ " uuids " ] ]
self . assertEqual ( ( build_id , " FAILED " ) in ids , True , " Failed build not listed by /compose/status " )
# Test the /api/v0/compose/cancel/<uuid> route
resp = self . server . post ( " /api/v0/compose?test=1 " ,
data = json . dumps ( test_compose ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , True , " Failed to start test compose: %s " % data )
cancel_id = data [ " build_id " ]
# Wait for it to start
self . assertEqual ( self . wait_for_status ( cancel_id , [ " RUNNING " ] ) , True , " Failed to start test compose " )
# Cancel the build
resp = self . server . delete ( " /api/v0/compose/cancel/ %s " % cancel_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , True , " Failed to cancel test compose: %s " % data )
# Delete the failed build
# Test the /api/v0/compose/delete/<uuid> route
resp = self . server . delete ( " /api/v0/compose/delete/ %s " % build_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ ( e [ " uuid " ] , e [ " status " ] ) for e in data [ " uuids " ] ]
self . assertEqual ( ( build_id , True ) in ids , True , " Failed to delete test compose: %s " % data )
# Make sure the failed list is empty
resp = self . server . get ( " /api/v0/compose/failed " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " failed " ] , [ ] , " Failed to delete the failed build: %s " % data )
def test_compose_12_create_finished ( self ) :
""" Test the /api/v0/compose routes with a finished test compose """
2018-08-21 22:08:58 +00:00
test_compose = { " blueprint_name " : " example-custom-base " ,
2018-04-30 18:34:48 +00:00
" compose_type " : " tar " ,
" branch " : " master " }
resp = self . server . post ( " /api/v0/compose?test=2 " ,
data = json . dumps ( test_compose ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , True , " Failed to start test compose: %s " % data )
build_id = data [ " build_id " ]
# Is it in the queue list (either new or run is fine, based on timing)
resp = self . server . get ( " /api/v0/compose/queue " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " new " ] + data [ " run " ] ]
self . assertEqual ( build_id in ids , True , " Failed to add build to the queue " )
# Wait for it to start
self . assertEqual ( self . wait_for_status ( build_id , [ " RUNNING " ] ) , True , " Failed to start test compose " )
# Wait for it to finish
self . assertEqual ( self . wait_for_status ( build_id , [ " FINISHED " ] ) , True , " Failed to finish test compose " )
resp = self . server . get ( " /api/v0/compose/info/ %s " % build_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " queue_status " ] , " FINISHED " , " Build not in FINISHED state " )
# Test the /api/v0/compose/finished route
resp = self . server . get ( " /api/v0/compose/finished " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " finished " ] ]
self . assertEqual ( build_id in ids , True , " Finished build not listed by /compose/finished " )
# Test the /api/v0/compose/failed route
resp = self . server . get ( " /api/v0/compose/failed " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " failed " ] , [ ] , " Failed build not listed by /compose/failed " )
# Test the /api/v0/compose/status/<uuid> route
resp = self . server . get ( " /api/v0/compose/status/ %s " % build_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ ( e [ " id " ] , e [ " queue_status " ] ) for e in data [ " uuids " ] ]
self . assertEqual ( ( build_id , " FINISHED " ) in ids , True , " Finished build not listed by /compose/status " )
# Test the /api/v0/compose/metadata/<uuid> route
resp = self . server . get ( " /api/v0/compose/metadata/ %s " % build_id )
self . assertEqual ( resp . status_code , 200 )
self . assertEqual ( len ( resp . data ) > 1024 , True )
# Test the /api/v0/compose/results/<uuid> route
resp = self . server . get ( " /api/v0/compose/results/ %s " % build_id )
self . assertEqual ( resp . status_code , 200 )
self . assertEqual ( len ( resp . data ) > 1024 , True )
# Test the /api/v0/compose/image/<uuid> route
resp = self . server . get ( " /api/v0/compose/image/ %s " % build_id )
self . assertEqual ( resp . status_code , 200 )
self . assertEqual ( len ( resp . data ) > 0 , True )
2018-05-03 21:22:40 +00:00
self . assertEqual ( resp . data , b " TEST IMAGE " )
2018-04-30 18:34:48 +00:00
2018-05-08 16:25:44 +00:00
# Examine the final-kickstart.ks for the customizations
# A bit kludgy since it examines the filesystem directly, but that's better than unpacking the metadata
final_ks = open ( joinpaths ( self . repo_dir , " var/lib/lorax/composer/results/ " , build_id , " final-kickstart.ks " ) ) . read ( )
# Check for the expected customizations in the kickstart
self . assertTrue ( " network --hostname= " in final_ks )
self . assertTrue ( " sshkey --user root " in final_ks )
2018-04-30 18:34:48 +00:00
# Delete the finished build
# Test the /api/v0/compose/delete/<uuid> route
resp = self . server . delete ( " /api/v0/compose/delete/ %s " % build_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ ( e [ " uuid " ] , e [ " status " ] ) for e in data [ " uuids " ] ]
self . assertEqual ( ( build_id , True ) in ids , True , " Failed to delete test compose: %s " % data )
# Make sure the finished list is empty
resp = self . server . get ( " /api/v0/compose/finished " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " finished " ] , [ ] , " Failed to delete the failed build: %s " % data )
2018-08-06 19:31:52 +00:00
2018-08-09 16:57:13 +00:00
def test_compose_13_status_filter ( self ) :
""" Test filter arguments on the /api/v0/compose/status route """
# Get a couple compose results going so we have something to filter
2018-08-21 22:08:58 +00:00
test_compose_fail = { " blueprint_name " : " example-glusterfs " ,
2018-08-09 16:57:13 +00:00
" compose_type " : " tar " ,
" branch " : " master " }
2018-08-21 22:08:58 +00:00
test_compose_success = { " blueprint_name " : " example-custom-base " ,
2018-08-09 16:57:13 +00:00
" compose_type " : " tar " ,
" branch " : " master " }
resp = self . server . post ( " /api/v0/compose?test=1 " ,
data = json . dumps ( test_compose_fail ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , True , " Failed to start test compose: %s " % data )
build_id_fail = data [ " build_id " ]
resp = self . server . get ( " /api/v0/compose/queue " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " new " ] + data [ " run " ] ]
self . assertEqual ( build_id_fail in ids , True , " Failed to add build to the queue " )
# Wait for it to start
self . assertEqual ( self . wait_for_status ( build_id_fail , [ " RUNNING " ] ) , True , " Failed to start test compose " )
# Wait for it to finish
self . assertEqual ( self . wait_for_status ( build_id_fail , [ " FAILED " ] ) , True , " Failed to finish test compose " )
# Fire up the other one
resp = self . server . post ( " /api/v0/compose?test=2 " ,
data = json . dumps ( test_compose_success ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , True , " Failed to start test compose: %s " % data )
build_id_success = data [ " build_id " ]
resp = self . server . get ( " /api/v0/compose/queue " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " new " ] + data [ " run " ] ]
self . assertEqual ( build_id_success in ids , True , " Failed to add build to the queue " )
# Wait for it to start
self . assertEqual ( self . wait_for_status ( build_id_success , [ " RUNNING " ] ) , True , " Failed to start test compose " )
# Wait for it to finish
self . assertEqual ( self . wait_for_status ( build_id_success , [ " FINISHED " ] ) , True , " Failed to finish test compose " )
# Test that both composes appear in /api/v0/compose/status/*
resp = self . server . get ( " /api/v0/compose/status/* " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " uuids " ] ]
self . assertIn ( build_id_success , ids , " Finished build not listed by /compose/status/* " )
self . assertIn ( build_id_fail , ids , " Failed build not listed by /compose/status/* " )
# Filter by name
resp = self . server . get ( " /api/v0/compose/status/*?blueprint= %s " % test_compose_fail [ " blueprint_name " ] )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " uuids " ] ]
self . assertIn ( build_id_fail , ids , " Failed build not listed by /compose/status blueprint filter " )
self . assertNotIn ( build_id_success , ids , " Finished build listed by /compose/status blueprint filter " )
# Filter by type
resp = self . server . get ( " /api/v0/compose/status/*?type=tar " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " uuids " ] ]
self . assertIn ( build_id_fail , ids , " Failed build not listed by /compose/status type filter " )
self . assertIn ( build_id_success , ids , " Finished build not listed by /compose/status type filter " )
resp = self . server . get ( " /api/v0/compose/status/*?type=snakes " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " uuids " ] ]
self . assertEqual ( ids , [ ] , " Invalid type not filtered by /compose/status type filter " )
# Filter by status
resp = self . server . get ( " /api/v0/compose/status/*?status=FAILED " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
ids = [ e [ " id " ] for e in data [ " uuids " ] ]
self . assertIn ( build_id_fail , ids , " Failed build not listed by /compose/status status filter " )
self . assertNotIn ( build_id_success , " Finished build listed by /compose/status status filter " )
2018-08-06 19:31:52 +00:00
def assertInputError ( self , resp ) :
""" Check all the conditions for a successful input check error result """
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( resp . status_code , 400 )
self . assertEqual ( data [ " status " ] , False )
2018-08-06 21:21:24 +00:00
self . assertTrue ( len ( data [ " errors " ] ) > 0 )
2018-08-09 19:43:01 +00:00
self . assertTrue ( " Invalid characters in " in data [ " errors " ] [ 0 ] [ " msg " ] )
2018-08-06 21:21:24 +00:00
def test_blueprints_list_branch ( self ) :
resp = self . server . get ( " /api/v0/blueprints/list?branch= " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_info_input ( self ) :
""" Test the blueprints/info input character checking """
# /api/v0/blueprints/info/<blueprint_names>
resp = self . server . get ( " /api/v0/blueprints/info/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-http-server?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/info/example-http-server?format= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_changes_input ( self ) :
""" Test the blueprints/changes input character checking """
# /api/v0/blueprints/changes/<blueprint_names>
resp = self . server . get ( " /api/v0/blueprints/changes/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/changes/example-http-server?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_new_input ( self ) :
""" Test the blueprints/new input character checking """
# /api/v0/blueprints/new
test_blueprint = { " description " : " An example GlusterFS server with samba " ,
" name " : UTF8_TEST_STRING ,
" version " : " 0.2.0 " ,
" modules " : [ { " name " : " glusterfs " , " version " : " 3.*.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 3.*.* " } ] ,
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ,
{ " name " : " tmux " , " version " : " 1.8 " } ] ,
" groups " : [ ] }
resp = self . server . post ( " /api/v0/blueprints/new " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
test_blueprint [ " name " ] = " example-glusterfs "
2018-08-06 21:21:24 +00:00
resp = self . server . post ( " /api/v0/blueprints/new?branch= " + UTF8_TEST_STRING ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_delete_input ( self ) :
""" Test the blueprints/delete input character checking """
resp = self . server . delete ( " /api/v0/blueprints/delete/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . delete ( " /api/v0/blueprints/delete/example-http-server?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_workspace_input ( self ) :
""" Test the blueprints/workspace input character checking """
test_blueprint = { " description " : " An example GlusterFS server with samba, ws version " ,
" name " : UTF8_TEST_STRING ,
" version " : " 0.3.0 " ,
" modules " : [ { " name " : " glusterfs " , " version " : " 3.*.* " } ,
{ " name " : " glusterfs-cli " , " version " : " 3.*.* " } ] ,
" packages " : [ { " name " : " samba " , " version " : " 4.*.* " } ,
{ " name " : " tmux " , " version " : " 1.8 " } ] ,
" groups " : [ ] }
resp = self . server . post ( " /api/v0/blueprints/workspace " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
test_blueprint [ " name " ] = " example-glusterfs "
2018-08-06 21:21:24 +00:00
resp = self . server . post ( " /api/v0/blueprints/workspace?branch= " + UTF8_TEST_STRING ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_workspace_delete_input ( self ) :
""" Test the DELETE blueprints/workspace input character checking """
resp = self . server . delete ( " /api/v0/blueprints/workspace/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . delete ( " /api/v0/blueprints/workspace/example-http-server?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_undo_input ( self ) :
""" Test the blueprints/undo/... input character checking """
resp = self . server . post ( " /api/v0/blueprints/undo/ " + UTF8_TEST_STRING + " /deadbeef " )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . post ( " /api/v0/blueprints/undo/example-http-server/deadbeef?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_tag_input ( self ) :
""" Test the blueprints/tag input character checking """
resp = self . server . post ( " /api/v0/blueprints/tag/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . post ( " /api/v0/blueprints/tag/example-http-server?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_diff_input ( self ) :
""" Test the blueprints/diff input character checking """
# /api/v0/blueprints/diff/<blueprint_name>/<from_commit>/<to_commit>
resp = self . server . get ( " /api/v0/blueprints/diff/ " + UTF8_TEST_STRING + " /NEWEST/WORKSPACE " )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/diff/example-http-server/NEWEST/WORKSPACE?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_freeze_input ( self ) :
""" Test the blueprints/freeze input character checking """
resp = self . server . get ( " /api/v0/blueprints/freeze/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/freeze/example-http-server?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/freeze/example-http-server?format= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_blueprints_depsolve_input ( self ) :
""" Test the blueprints/depsolve input character checking """
resp = self . server . get ( " /api/v0/blueprints/depsolve/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-08-21 22:08:58 +00:00
resp = self . server . get ( " /api/v0/blueprints/depsolve/example-http-server?branch= " + UTF8_TEST_STRING )
2018-08-06 21:21:24 +00:00
self . assertInputError ( resp )
2018-08-06 19:31:52 +00:00
def test_projects_info_input ( self ) :
""" Test the projects/info input character checking """
resp = self . server . get ( " /api/v0/projects/info/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_projects_depsolve_input ( self ) :
""" Test the projects/depsolve input character checking """
resp = self . server . get ( " /api/v0/projects/depsolve/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_projects_source_info_input ( self ) :
""" Test the projects/source/info input character checking """
resp = self . server . get ( " /api/v0/projects/source/info/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_projects_source_delete_input ( self ) :
""" Test the projects/source/delete input character checking """
resp = self . server . delete ( " /api/v0/projects/source/delete/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_modules_list_input ( self ) :
""" Test the modules/list input character checking """
resp = self . server . get ( " /api/v0/modules/list/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_modules_info_input ( self ) :
""" Test the modules/info input character checking """
resp = self . server . get ( " /api/v0/modules/info/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_status_input ( self ) :
""" Test the compose/status input character checking """
resp = self . server . get ( " /api/v0/compose/status/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_cancel_input ( self ) :
""" Test the compose/cancel input character checking """
resp = self . server . delete ( " /api/v0/compose/cancel/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_delete_input ( self ) :
""" Test the compose/delete input character checking """
resp = self . server . delete ( " /api/v0/compose/delete/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_info_input ( self ) :
""" Test the compose/info input character checking """
resp = self . server . get ( " /api/v0/compose/info/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_metadata_input ( self ) :
""" Test the compose/metadata input character checking """
resp = self . server . get ( " /api/v0/compose/metadata/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_results_input ( self ) :
""" Test the compose/results input character checking """
resp = self . server . get ( " /api/v0/compose/results/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_logs_input ( self ) :
""" Test the compose/logs input character checking """
resp = self . server . get ( " /api/v0/compose/logs/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_image_input ( self ) :
""" Test the compose/image input character checking """
resp = self . server . get ( " /api/v0/compose/image/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
def test_compose_log_input ( self ) :
""" Test the compose/log input character checking """
resp = self . server . get ( " /api/v0/compose/log/ " + UTF8_TEST_STRING )
self . assertInputError ( resp )
2018-10-01 21:47:49 +00:00
@contextmanager
def in_tempdir ( prefix = ' tmp ' ) :
""" Execute a block of code with chdir in a temporary location """
oldcwd = os . getcwd ( )
tmpdir = tempfile . mkdtemp ( prefix = prefix )
os . chdir ( tmpdir )
yield
os . chdir ( oldcwd )
shutil . rmtree ( tmpdir )
def makeFakeRPM ( repo_dir , name , epoch , version , release ) :
""" Make a fake rpm file in repo_dir """
p = SimpleRpmBuild ( name , version , release )
if epoch :
p . epoch = epoch
p . add_simple_payload_file_random ( )
with in_tempdir ( " lorax-test-rpms. " ) :
p . make ( )
rpmfile = p . get_built_rpm ( expectedArch )
shutil . move ( rpmfile , repo_dir )
class RepoCacheTestCase ( unittest . TestCase ) :
""" Test to make sure that changes to the repository are picked up immediately. """
@classmethod
def setUpClass ( self ) :
repo_dir = tempfile . mkdtemp ( prefix = " lorax.test.repo. " )
server . config [ " REPO_DIR " ] = repo_dir
repo = open_or_create_repo ( server . config [ " REPO_DIR " ] )
server . config [ " GITLOCK " ] = GitLock ( repo = repo , lock = Lock ( ) , dir = repo_dir )
server . config [ " COMPOSER_CFG " ] = configure ( root_dir = repo_dir , test_config = True )
os . makedirs ( joinpaths ( server . config [ " COMPOSER_CFG " ] . get ( " composer " , " share_dir " ) , " composer " ) )
errors = make_queue_dirs ( server . config [ " COMPOSER_CFG " ] , 0 )
if errors :
raise RuntimeError ( " \n " . join ( errors ) )
make_dnf_dirs ( server . config [ " COMPOSER_CFG " ] )
# Modify fedora vs. rawhide tests when running on rawhide
if os . path . exists ( " /etc/yum.repos.d/fedora-rawhide.repo " ) :
self . rawhide = True
# Create an extra repo to use for checking the metadata expire handling
os . makedirs ( " /tmp/lorax-test-repo/ " )
makeFakeRPM ( " /tmp/lorax-test-repo/ " , " fake-milhouse " , 0 , " 1.0.0 " , " 1 " )
os . system ( " createrepo_c /tmp/lorax-test-repo/ " )
server . config [ " DNFLOCK " ] = DNFLock ( server . config [ " COMPOSER_CFG " ] , expire_secs = 10 )
# Include a message in /api/status output
server . config [ " TEMPLATE_ERRORS " ] = [ " Test message " ]
server . config [ ' TESTING ' ] = True
self . server = server . test_client ( )
self . repo_dir = repo_dir
# Copy the shared files over to the directory tree we are using
share_path = " ./share/composer/ "
for f in glob ( joinpaths ( share_path , " * " ) ) :
shutil . copy ( f , joinpaths ( server . config [ " COMPOSER_CFG " ] . get ( " composer " , " share_dir " ) , " composer " ) )
start_queue_monitor ( server . config [ " COMPOSER_CFG " ] , 0 , 0 )
@classmethod
def tearDownClass ( self ) :
shutil . rmtree ( server . config [ " REPO_DIR " ] )
shutil . rmtree ( " /tmp/lorax-test-repo/ " )
def add_new_source ( self , repo_dir ) :
json_source = """ { " name " : " new-repo-1 " , " url " : " file:///tmp/lorax-test-repo/ " , " type " : " yum-baseurl " ,
" check_ssl " : false , " check_gpg " : false } """
self . assertTrue ( len ( json_source ) > 0 )
resp = self . server . post ( " /api/v0/projects/source/new " ,
data = json_source ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
def add_blueprint ( self ) :
test_blueprint = { " description " : " Metadata expire test blueprint " ,
" name " : " milhouse-test " ,
" version " : " 0.0.1 " ,
" modules " : [ ] ,
" packages " : [ { " name " : " fake-milhouse " , " version " : " 1.*.* " } ] ,
" groups " : [ ] }
resp = self . server . post ( " /api/v0/blueprints/new " ,
data = json . dumps ( test_blueprint ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertEqual ( data , { " status " : True } )
def test_metadata_expires ( self ) :
""" Ensure that metadata expire settings pick up changes to the repo immediately """
# Metadata can change at any time, but checking for that is expensive. So we only want
# to check when the timeout has expired, OR when starting a new compose
# Add a new repository at /tmp/lorax-test-repo/
self . add_new_source ( " /tmp/lorax-test-repo " )
# Add a new blueprint with fake-milhouse in it
self . add_blueprint ( )
# Depsolve the blueprint
resp = self . server . get ( " /api/v0/blueprints/depsolve/milhouse-test " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] [ " blueprint " ] [ " name " ] , " milhouse-test " )
deps = blueprints [ 0 ] [ " dependencies " ]
print ( deps )
self . assertTrue ( any ( [ True for d in deps if d [ " name " ] == " fake-milhouse " and d [ " version " ] == " 1.0.0 " ] ) )
self . assertFalse ( data . get ( " errors " ) )
# Make a new version of fake-milhouse
makeFakeRPM ( " /tmp/lorax-test-repo/ " , " fake-milhouse " , 0 , " 1.0.1 " , " 1 " )
os . system ( " createrepo_c /tmp/lorax-test-repo/ " )
# Expire time has been set to 10 seconds, so wait 11 and try it.
time . sleep ( 11 )
resp = self . server . get ( " /api/v0/blueprints/depsolve/milhouse-test " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
blueprints = data . get ( " blueprints " )
self . assertNotEqual ( blueprints , None )
self . assertEqual ( len ( blueprints ) , 1 )
self . assertEqual ( blueprints [ 0 ] [ " blueprint " ] [ " name " ] , " milhouse-test " )
deps = blueprints [ 0 ] [ " dependencies " ]
print ( deps )
self . assertTrue ( any ( [ True for d in deps if d [ " name " ] == " fake-milhouse " and d [ " version " ] == " 1.0.1 " ] ) )
self . assertFalse ( data . get ( " errors " ) )
# Make a new version of fake-milhouse
makeFakeRPM ( " /tmp/lorax-test-repo/ " , " fake-milhouse " , 0 , " 1.0.2 " , " 1 " )
os . system ( " createrepo_c /tmp/lorax-test-repo/ " )
test_compose = { " blueprint_name " : " milhouse-test " ,
" compose_type " : " tar " ,
" branch " : " master " }
resp = self . server . post ( " /api/v0/compose?test=2 " ,
data = json . dumps ( test_compose ) ,
content_type = " application/json " )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
self . assertEqual ( data [ " status " ] , True , " Failed to start test compose: %s " % data )
build_id = data [ " build_id " ]
# Check to see which version was used for the compose, should be 1.0.2
resp = self . server . get ( " /api/v0/compose/info/ %s " % build_id )
data = json . loads ( resp . data )
self . assertNotEqual ( data , None )
pkg_deps = data [ " deps " ] [ " packages " ]
print ( pkg_deps )
self . assertTrue ( any ( [ True for d in pkg_deps if d [ " name " ] == " fake-milhouse " and d [ " version " ] == " 1.0.2 " ] ) )