350 lines
12 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# (C) 2014 tchvatal@suse.cz, openSUSE.org
# Distribute under GPLv2 or later
import os
import sys
import contextlib
import unittest
import httpretty
import difflib
import subprocess
import tempfile
# mock is part of python3.3
try:
import unittest.mock
except ImportError:
import mock
import oscs
import osc
from obs import OBS
import re
import pprint
PY3 = sys.version_info[0] == 3
if PY3:
string_types = str,
else:
string_types = basestring,
class TestApiCalls(unittest.TestCase):
"""
Tests for various api calls to ensure we return expected content
"""
def _get_fixtures_dir(self):
"""
Return path for fixtures
"""
return os.path.join(os.getcwd(), 'tests/fixtures')
def _get_fixture_path(self, filename):
return os.path.join(self._get_fixtures_dir(), filename)
def _get_fixture_content(self, filename):
response = open(self._get_fixture_path(filename), 'r')
content = response.read()
response.close()
return content
def _register_pretty_url_get(self, url, filename):
"""
Register specified get url with specific filename in fixtures
2014-02-04 17:16:37 +01:00
:param url: url address to "open"
:param filename: name of the fixtures file
"""
content = self._get_fixture_content(filename)
httpretty.register_uri(httpretty.GET,
url,
body=content)
def setUp(self):
"""
Initialize the configuration
"""
self.obs = OBS()
@httpretty.activate
def test_ring_packages(self):
"""
Validate the creation of the rings.
"""
# our content in the XML files
ring_packages = {
'elem-ring-0': 'openSUSE:Factory:Rings:0-Bootstrap',
'elem-ring-1': 'openSUSE:Factory:Rings:1-MinimalX',
}
# Initiate the pretty overrides
self._register_pretty_url_get('https://localhost/source/openSUSE:Factory:Rings:0-Bootstrap',
'ring-0-project.xml')
self._register_pretty_url_get('https://localhost/source/openSUSE:Factory:Core',
'ring-1-project.xml')
# Create the api object
with mock_generate_ring_packages():
api = oscs.StagingAPI('https://localhost')
self.assertEqual(ring_packages, api.ring_packages)
@httpretty.activate
def test_dispatch_open_requests(self):
"""
Test dispatching and closure of non-ring packages
"""
# Register OBS
self.obs.register_obs()
# Get rid of open requests
self.obs.api.dispatch_open_requests()
# Check that we tried to close it
self.assertEqual(httpretty.last_request().method, 'POST')
self.assertEqual(httpretty.last_request().querystring[u'cmd'], [u'changereviewstate'])
# Try it again
self.obs.api.dispatch_open_requests()
# This time there should be nothing to close
self.assertEqual(httpretty.last_request().method, 'GET')
2014-02-10 14:25:31 +01:00
@httpretty.activate
def test_pseudometa_get_prj(self):
"""
Test getting project metadata from YAML in project description
"""
# Register OBS
self.obs.register_obs()
2014-02-10 14:25:31 +01:00
# Try to get data from project that has no metadata
data = self.obs.api.get_prj_pseudometa('openSUSE:Factory:Staging:A')
# Should be empty, but contain structure to work with
self.assertEqual(data, {'requests': []})
# Add some sample data
rq = { 'id': '123', 'package': 'test-package' }
data['requests'].append(rq)
# Save them and read them back
self.obs.api.set_prj_pseudometa('openSUSE:Factory:Staging:A',data)
test_data = self.obs.api.get_prj_pseudometa('openSUSE:Factory:Staging:A')
# Verify that we got back the same data
self.assertEqual(data,test_data)
@httpretty.activate
def test_list_projects(self):
"""
List projects and their content
"""
self.obs.register_obs()
# Prepare expected results
data = []
for prj in self.obs.st_project_data:
data.append('openSUSE:Factory:Staging:' + prj)
# Compare the results
self.assertEqual(data, self.obs.api.get_staging_projects())
@httpretty.activate
def test_open_requests(self):
"""
Test searching for open requests
"""
requests = []
self.obs.register_obs()
# get the open requests
requests = self.obs.api.get_open_requests()
# Compare the results, we only care now that we got 1 of them not the content
self.assertEqual(1, len(requests))
@httpretty.activate
def test_get_package_information(self):
"""
Test if we get proper project, name and revision from the staging informations
"""
package_info = {'project': 'devel:wine',
'rev': '7b98ac01b8071d63a402fa99dc79331c',
'srcmd5': '7b98ac01b8071d63a402fa99dc79331c',
'package': 'wine'}
2014-02-25 15:44:40 +01:00
self.obs.register_obs()
# Compare the results, we only care now that we got 2 of them not the content
self.assertEqual(package_info,
2014-02-25 15:44:40 +01:00
self.obs.api.get_package_information('openSUSE:Factory:Staging:B', 'wine'))
2014-02-26 09:51:30 +01:00
@httpretty.activate
def test_request_id_package_mapping(self):
2014-02-26 09:51:30 +01:00
"""
Test whether we can get correct id for sr in staging project
"""
self.obs.register_obs()
prj = 'openSUSE:Factory:Staging:B'
# Get rq
num = self.obs.api.get_request_id_for_package(prj, 'wine')
self.assertEqual(333,num)
# Get package name
self.assertEqual('wine',self.obs.api.get_package_for_request_id(prj, num))
2014-02-26 09:51:30 +01:00
2014-02-26 10:59:41 +01:00
@httpretty.activate
def test_rm_from_prj(self):
self.obs.register_obs()
prj = 'openSUSE:Factory:Staging:B'
pkg = 'wine'
2014-02-26 10:59:41 +01:00
# Verify package is there
self.assertEqual(self.obs.links_data.has_key(prj + '/' + pkg),True)
2014-02-26 10:59:41 +01:00
# Get rq number
num = self.obs.api.get_request_id_for_package(prj, pkg)
2014-02-26 10:59:41 +01:00
# Delete the package
self.obs.api.rm_from_prj(prj, package='wine');
# Verify package is not there
self.assertEqual(self.obs.links_data.has_key(prj + '/' + pkg),False)
# RQ is gone
self.assertEqual(None, self.obs.api.get_request_id_for_package(prj, pkg))
self.assertEqual(None, self.obs.api.get_package_for_request_id(prj, num))
2014-02-26 10:59:41 +01:00
# Verify that review is closed
self.assertEqual('accepted', self.obs.requests_data[str(num)]['review'])
self.assertEqual('new', self.obs.requests_data[str(num)]['request'])
@httpretty.activate
def test_add_sr(self):
self.obs.register_obs()
prj = 'openSUSE:Factory:Staging:A'
rq = '123'
pkg = self.obs.requests_data[rq]['package']
# Add rq to the project
self.obs.api.rq_to_prj(rq, prj);
# Verify that review is there
self.assertEqual('new', self.obs.requests_data[str(rq)]['review'])
self.assertEqual('review', self.obs.requests_data[str(rq)]['request'])
@httpretty.activate
def test_create_package_container(self):
"""
Test if the uploaded _meta is correct
"""
with mock_generate_ring_packages():
api = oscs.StagingAPI('https://localhost')
httpretty.register_uri(
httpretty.PUT, "https://localhost/source/openSUSE:Factory:Staging:B/wine/_meta")
api.create_package_container('openSUSE:Factory:Staging:B', 'wine')
self.assertEqual(httpretty.last_request().method, 'PUT')
self.assertEqual(httpretty.last_request().body, '<package name="wine"><title/><description/></package>')
self.assertEqual(httpretty.last_request().path, '/source/openSUSE:Factory:Staging:B/wine/_meta')
2014-02-13 14:18:16 +01:00
api.create_package_container('openSUSE:Factory:Staging:B', 'wine', disable_build=True)
self.assertEqual(httpretty.last_request().method, 'PUT')
self.assertEqual(httpretty.last_request().body, '<package name="wine"><title /><description /><build><disable /></build></package>')
self.assertEqual(httpretty.last_request().path, '/source/openSUSE:Factory:Staging:B/wine/_meta')
2014-02-17 15:12:18 +01:00
@httpretty.activate
def test_review_handling(self):
2014-02-17 15:12:18 +01:00
"""
Test whether accepting/creating reviews behaves correctly
2014-02-17 15:12:18 +01:00
"""
# Register OBS
self.obs.register_obs()
2014-02-17 15:12:18 +01:00
# Add review
self.obs.api.add_review('123', by_project='openSUSE:Factory:Staging:A')
2014-02-17 15:12:18 +01:00
self.assertEqual(httpretty.last_request().method, 'POST')
self.assertEqual(httpretty.last_request().querystring[u'cmd'], [u'addreview'])
# Try to readd, should do anything
self.obs.api.add_review('123', by_project='openSUSE:Factory:Staging:A')
self.assertEqual(httpretty.last_request().method, 'GET')
# Accept review
self.obs.api.set_review('123', 'openSUSE:Factory:Staging:A')
self.assertEqual(httpretty.last_request().method, 'POST')
self.assertEqual(httpretty.last_request().querystring[u'cmd'], [u'changereviewstate'])
# Try to accept it again should do anything
self.obs.api.set_review('123', 'openSUSE:Factory:Staging:A')
2014-02-17 15:12:18 +01:00
self.assertEqual(httpretty.last_request().method, 'GET')
# But we should be able to reopen it
self.obs.api.add_review('123', by_project='openSUSE:Factory:Staging:A')
self.assertEqual(httpretty.last_request().method, 'POST')
self.assertEqual(httpretty.last_request().querystring[u'cmd'], [u'addreview'])
2014-02-17 15:12:18 +01:00
2014-02-14 19:17:31 +01:00
@httpretty.activate
def test_check_project_status_green(self):
"""
Test checking project status
"""
# Initiate the pretty overrides
self._register_pretty_url_get('https://localhost/build/green/_result',
2014-02-14 19:17:31 +01:00
'build-results-green.xml')
# Initiate the api with mocked rings
with mock_generate_ring_packages():
api = oscs.StagingAPI('https://localhost')
2014-02-14 19:17:31 +01:00
# Check print output
self.assertEqual(api.gather_build_status("green"), None)
2014-02-14 19:17:31 +01:00
@httpretty.activate
def test_check_project_status_red(self):
"""
Test checking project status
"""
# Initiate the pretty overrides
self._register_pretty_url_get('https://localhost/build/red/_result',
2014-02-14 19:17:31 +01:00
'build-results-red.xml')
# Initiate the api with mocked rings
with mock_generate_ring_packages():
api = oscs.StagingAPI('https://localhost')
2014-02-14 19:17:31 +01:00
# Check print output
self.assertEqual(api.gather_build_status('red'), ['red', [{'path': 'standard/x86_64', 'state': 'building'}],
[{'path': 'standard/i586', 'pkg': 'glibc', 'state': 'broken'},
{'path': 'standard/i586', 'pkg': 'openSUSE-images', 'state': 'failed'}]])
2014-02-14 19:17:31 +01:00
def test_bootstrap_copy(self):
import osclib.freeze_command
fc = osclib.freeze_command.FreezeCommand('https://localhost')
fp = self._get_fixture_path('staging-meta-for-bootstrap-copy.xml')
fixture = subprocess.check_output('/usr/bin/xmllint --format %s' % fp, shell=True)
f = tempfile.NamedTemporaryFile(delete=False)
f.write(fc.prj_meta_for_bootstrap_copy('openSUSE:Factory:Staging:A'))
f.close()
output = subprocess.check_output('/usr/bin/xmllint --format %s' % f.name, shell=True)
for line in difflib.unified_diff(fixture.split("\n"), output.split("\n")):
2014-02-17 12:31:01 +01:00
print(line)
self.assertEqual(output, fixture)
2014-02-13 14:18:16 +01:00
# Here place all mockable functions
@contextlib.contextmanager
def mock_generate_ring_packages():
with mock.patch('oscs.StagingAPI._generate_ring_packages', return_value={
'elem-ring-0': 'openSUSE:Factory:Rings:0-Bootstrap',
'elem-ring-1': 'openSUSE:Factory:Rings:1-MinimalX'}):
yield