
Fix lots of pep8 issues caused by new version of hacking. Change-Id: I70c1bef9e826a7c74ef87c052fc248e858ea0c73
112 lines
5.5 KiB
Python
112 lines
5.5 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from tests.api import test_api
|
|
|
|
|
|
class TestAPICompanies(test_api.TestAPI):
|
|
|
|
def test_get_companies(self):
|
|
with test_api.make_runtime_storage(
|
|
{
|
|
'repos': [
|
|
{'module': 'nova', 'project_type': 'openstack',
|
|
'organization': 'openstack',
|
|
'uri': 'git://git.openstack.org/openstack/nova.git'},
|
|
{'module': 'glance', 'project_type': 'openstack',
|
|
'organization': 'openstack',
|
|
'uri': 'git://git.openstack.org/openstack/glance.git'}
|
|
],
|
|
'project_types': [
|
|
{'id': 'openstack', 'title': 'OpenStack',
|
|
'modules': ['nova', 'glance']}],
|
|
'releases': [{'release_name': 'prehistory',
|
|
'end_date': 1234567890},
|
|
{'release_name': 'icehouse',
|
|
'end_date': 1234567890}],
|
|
'module_groups': {
|
|
'openstack': {'module_group_name': 'openstack',
|
|
'modules': ['nova', 'glance']},
|
|
'nova': {'module_group_name': 'nova',
|
|
'modules': ['nova']},
|
|
'glance': {'module_group_name': 'glance',
|
|
'modules': ['glance']},
|
|
}},
|
|
test_api.make_records(record_type=['commit'],
|
|
loc=[10, 20, 30],
|
|
module=['glance'],
|
|
company_name=['NEC', 'IBM', 'NTT']),
|
|
test_api.make_records(record_type=['review'],
|
|
primary_key=['0123456789', '9876543210'],
|
|
module=['glance'],
|
|
company_name=['IBM']),
|
|
test_api.make_records(record_type=['mark'],
|
|
review_id=['0123456789', '9876543210'],
|
|
module=['glance'],
|
|
company_name=['IBM']),
|
|
test_api.make_records(record_type=['mark'],
|
|
review_id=['0123456789'],
|
|
module=['glance'],
|
|
company_name=['NEC'])):
|
|
|
|
response = self.app.get('/api/1.0/companies?metric=commits&'
|
|
'module=glance')
|
|
companies = test_api.load_json(response)['data']
|
|
self.assertEqual([{'id': 'ibm', 'text': 'IBM'},
|
|
{'id': 'nec', 'text': 'NEC'},
|
|
{'id': 'ntt', 'text': 'NTT'}], companies)
|
|
|
|
response = self.app.get('/api/1.0/companies?metric=marks&'
|
|
'module=glance')
|
|
companies = test_api.load_json(response)['data']
|
|
self.assertEqual([{'id': 'ibm', 'text': 'IBM'},
|
|
{'id': 'nec', 'text': 'NEC'}], companies)
|
|
|
|
def test_get_company(self):
|
|
with test_api.make_runtime_storage(
|
|
{
|
|
'repos': [
|
|
{'module': 'nova', 'project_type': 'openstack',
|
|
'organization': 'openstack',
|
|
'uri': 'git://git.openstack.org/openstack/nova.git'},
|
|
{'module': 'glance', 'project_type': 'openstack',
|
|
'organization': 'openstack',
|
|
'uri': 'git://git.openstack.org/openstack/glance.git'}
|
|
],
|
|
'module_groups': {
|
|
'nova': test_api.make_module('nova'),
|
|
'glance': test_api.make_module('glance'),
|
|
},
|
|
'releases': [{'release_name': 'prehistory',
|
|
'end_date': 1234567890},
|
|
{'release_name': 'icehouse',
|
|
'end_date': 1234567890}],
|
|
'project_types': [
|
|
{'id': 'all', 'title': 'All',
|
|
'modules': ['nova', 'glance', 'nova-cli']},
|
|
{'id': 'openstack', 'title': 'OpenStack',
|
|
'modules': ['nova', 'glance']}]},
|
|
test_api.make_records(record_type=['commit'],
|
|
loc=[10, 20, 30],
|
|
module=['glance'],
|
|
company_name=['NEC', 'IBM', 'NTT'])):
|
|
|
|
response = self.app.get('/api/1.0/companies/nec?module=glance')
|
|
company = test_api.load_json(response)['company']
|
|
self.assertEqual({'id': 'nec', 'text': 'NEC'}, company)
|
|
|
|
response = self.app.get('/api/1.0/companies/google?module=glance')
|
|
self.assertEqual(404, response.status_code)
|