Beispiel #1
0
 def test_users(self):
     with test_api.make_runtime_storage(
             {'repos': [
                 {'module': 'nova', 'organization': 'openstack',
                  'uri': 'https://git.openstack.org/openstack/nova.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': {
                  'nova': test_api.make_module('nova'),
                  'glance': test_api.make_module('glance')},
              'user:john_doe': {'user_name': 'John Doe'},
              'user:bill_smith': {'user_name': 'Bill Smith'}},
             test_api.make_records(record_type=['commit'], module=['nova'],
                                   user_id=['john_doe', 'bill_smith'])):
         response = self.app.get('/api/1.0/users?'
                                 'module=nova&metric=commits')
         users = test_api.load_json(response)['data']
         self.assertEqual(2, len(users))
         self.assertIn({'id': 'john_doe', 'text': 'John Doe'}, users)
         self.assertIn({'id': 'bill_smith', 'text': 'Bill Smith'}, users)
 def test_users(self):
     with test_api.make_runtime_storage(
             {'repos': [
                 {'module': 'nova', 'organization': 'openstack',
                  'uri': 'git://git.openstack.org/openstack/nova.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': {
                  'nova': test_api.make_module('nova'),
                  'glance': test_api.make_module('glance')},
              'user:john_doe': {'user_name': 'John Doe'},
              'user:bill_smith': {'user_name': 'Bill Smith'}},
             test_api.make_records(record_type=['commit'], module=['nova'],
                                   user_id=['john_doe', 'bill_smith'])):
         response = self.app.get('/api/1.0/users?'
                                 'module=nova&metric=commits')
         users = test_api.load_json(response)['data']
         self.assertEqual(2, len(users))
         self.assertIn({'id': 'john_doe', 'text': 'John Doe'}, users)
         self.assertIn({'id': 'bill_smith', 'text': 'Bill Smith'}, users)
    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)
Beispiel #4
0
    def test_get_modules(self):
        data = {
            'repos': [
                {'module': 'nova', 'organization': 'openstack',
                 'uri':
                     'https://git.openstack.org/openstack/nova.git'},
                {'module': 'glance', 'organization': 'openstack',
                 'uri':
                     'https://git.openstack.org/openstack/glance.git'}
            ],
            'module_groups': {
                'nova-group': {'id': 'nova-group',
                               'module_group_name': 'nova-group',
                               'modules': ['nova', 'nova-cli'],
                               'tag': 'group'},
                'nova': test_api.make_module('nova'),
                'nova-cli': test_api.make_module('nova-cli'),
                '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': 'integrated',
                               'title': 'Integrated',
                               'modules': ['nova', 'glance']}]}

        with test_api.make_runtime_storage(
                data,
                test_api.make_records(record_type=['commit'],
                                      module=['glance', 'nova', 'nova-cli'])):

            response = self.app.get('/api/1.0/modules?'
                                    'project_type=all&metric=commits')
            modules = test_api.load_json(response)['data']
            self.assertEqual(
                [{'id': 'glance', 'text': 'glance', 'tag': 'module'},
                 {'id': 'nova', 'text': 'nova', 'tag': 'module'},
                 {'id': 'nova-cli', 'text': 'nova-cli', 'tag': 'module'},
                 {'id': 'nova-group', 'text': 'nova-group', 'tag': 'group'}],
                modules,
                message='Expected modules belonging to project type plus '
                        'module groups that are completely within '
                        'project type')

            response = self.app.get('/api/1.0/modules?module=nova-group&'
                                    'project_type=integrated&metric=commits')
            modules = test_api.load_json(response)['data']
            self.assertEqual(
                [{'id': 'glance', 'text': 'glance', 'tag': 'module'},
                 {'id': 'nova', 'text': 'nova', 'tag': 'module'},
                 {'id': 'nova-group', 'text': 'nova-group', 'tag': 'group'}],
                modules,
                message='Expected modules belonging to project type plus '
                        'module groups that are completely within '
                        'project type')
Beispiel #5
0
    def test_get_engineers(self):
        data = {
            'repos': [
                {'module': 'nova', 'project_type': 'openstack',
                 'organization': 'openstack',
                 'uri': 'https://git.openstack.org/openstack/nova.git'},
                {'module': 'glance', 'project_type': 'openstack',
                 'organization': 'openstack',
                 'uri': 'https://git.openstack.org/openstack/glance.git'}
            ],
            'releases': [{'release_name': 'prehistory',
                          'end_date': 1234567890},
                         {'release_name': 'icehouse',
                          'end_date': 1234567890}],
            'module_groups': {
                'openstack': {'id': 'openstack',
                              'module_group_name': 'openstack',
                              'modules': ['nova', 'glance'],
                              'tag': 'group'},
                'nova': test_api.make_module('nova'),
                'glance': test_api.make_module('glance'),
            },
            'project_types': [
                {'id': 'all', 'title': 'All',
                 'modules': ['nova', 'glance']}],
            'user:john_doe': {
                'seq': 1, 'user_id': 'john_doe',
                'user_name': 'John Doe',
                'companies': [{'company_name': 'NEC', 'end_date': 0}],
                'emails': ['*****@*****.**'], 'core': []},
            'user:bill': {
                'seq': 1, 'user_id': 'bill', 'user_name': 'Bill Smith',
                'companies': [{'company_name': 'IBM', 'end_date': 0}],
                'emails': ['*****@*****.**'], 'core': []}}

        with test_api.make_runtime_storage(
                data,
                test_api.make_records(record_type=['commit'],
                                      loc=[10, 20, 30],
                                      module=['nova'],
                                      user_id=['john_doe']),
                test_api.make_records(record_type=['commit'],
                                      loc=[100, 200, 300],
                                      module=['glance'],
                                      user_id=['john_doe']),
                test_api.make_records(record_type=['review'],
                                      primary_key=['0123456789'],
                                      module=['glance']),
                test_api.make_records(record_type=['mark'],
                                      review_id=['0123456789'],
                                      module=['glance'],
                                      user_id=['john_doe', 'bill'])):
            response = self.app.get('/api/1.0/stats/engineers?metric=loc&'
                                    'project_type=all')
            stats = test_api.load_json(response)['stats']
            self.assertEqual(1, len(stats))
            self.assertEqual(660, stats[0]['metric'])
    def test_get_modules(self):
        with test_api.make_runtime_storage(
                {
                    'repos': [
                        {'module': 'nova', 'organization': 'openstack',
                         'uri': 'git://git.openstack.org/openstack/nova.git'},
                        {'module': 'glance', 'organization': 'openstack',
                         'uri': 'git://git.openstack.org/openstack/glance.git'}
                    ],
                    'module_groups': {
                        'nova-group': {'id': 'nova-group',
                                       'module_group_name': 'nova-group',
                                       'modules': ['nova', 'nova-cli'],
                                       'tag': 'group'},
                        'nova': test_api.make_module('nova'),
                        'nova-cli': test_api.make_module('nova-cli'),
                        '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': 'integrated',
                                       'title': 'Integrated',
                                       'modules': ['nova', 'glance']}]},
                test_api.make_records(record_type=['commit'],
                                      module=['glance', 'nova', 'nova-cli'])):

            response = self.app.get('/api/1.0/modules?'
                                    'project_type=all&metric=commits')
            modules = test_api.load_json(response)['data']
            self.assertEqual(
                [{'id': 'glance', 'text': 'glance', 'tag': 'module'},
                 {'id': 'nova', 'text': 'nova', 'tag': 'module'},
                 {'id': 'nova-cli', 'text': 'nova-cli', 'tag': 'module'},
                 {'id': 'nova-group', 'text': 'nova-group', 'tag': 'group'}],
                modules,
                message='Expected modules belonging to project type plus '
                        'module groups that are completely within '
                        'project type')

            response = self.app.get('/api/1.0/modules?module=nova-group&'
                                    'project_type=integrated&metric=commits')
            modules = test_api.load_json(response)['data']
            self.assertEqual(
                [{'id': 'glance', 'text': 'glance', 'tag': 'module'},
                 {'id': 'nova', 'text': 'nova', 'tag': 'module'},
                 {'id': 'nova-group', 'text': 'nova-group', 'tag': 'group'}],
                modules,
                message='Expected modules belonging to project type plus '
                        'module groups that are completely within '
                        'project type')
Beispiel #7
0
    def test_get_module(self):
        data = {
            'repos': [
                {'module': 'nova', 'organization': 'openstack',
                 'uri': 'https://git.openstack.org/openstack/nova.git'}],
            'module_groups': {
                'nova-group': {'id': 'nova-group',
                               'module_group_name': 'nova-group',
                               'modules': ['nova-cli', 'nova'],
                               'tag': 'group'},
                'nova': test_api.make_module('nova'),
                'nova-cli': test_api.make_module('nova-cli'),
            },
            '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']}]}

        with test_api.make_runtime_storage(
                data,
                test_api.make_records(record_type=['commit'])):

            response = self.app.get('/api/1.0/modules/nova')
            module = test_api.load_json(response)['module']
            expected = {
                'id': 'nova',
                'modules': [{
                    'module_name': 'nova',
                    'visible': True,
                    'repo_uri': 'https://git.openstack.org/openstack/nova.git'
                }],
                'name': 'Nova', 'tag': 'module'}
            self.assertEqual(expected, module)

            response = self.app.get('/api/1.0/modules/nova-group')
            module = test_api.load_json(response)['module']
            expected = {
                'id': 'nova-group',
                'modules': [{
                    'module_name': 'nova',
                    'visible': True,
                    'repo_uri': 'https://git.openstack.org/openstack/nova.git'
                },
                    {'module_name': 'nova-cli', 'visible': False},
                ],
                'name': 'Nova-group', 'tag': 'group'}
            self.assertEqual(expected, module)
Beispiel #8
0
 def test_get_modules(self):
     data = {
         'repos': [{
             'module': 'nova',
             'organization': 'openstack',
             'uri': 'https://git.openstack.org/openstack/nova.git'
         }, {
             'module': 'glance',
             'organization': 'openstack',
             'uri': 'https://git.openstack.org/openstack/glance.git'
         }],
         'releases': [{
             'release_name': 'prehistory',
             'end_date': 1234567890
         }, {
             'release_name': 'icehouse',
             'end_date': 1234567890
         }],
         'module_groups': {
             'openstack': {
                 'id': 'openstack',
                 'module_group_name': 'openstack',
                 'modules': ['nova', 'glance'],
                 'tag': 'group'
             },
             'nova': test_api.make_module('nova'),
             'glance': test_api.make_module('glance'),
         },
         'project_types': [{
             'id': 'all',
             'title': 'All',
             'modules': ['nova', 'glance']
         }]
     }
     with test_api.make_runtime_storage(
             data,
             test_api.make_records(record_type=['commit'],
                                   loc=[10, 20, 30],
                                   module=['nova']),
             test_api.make_records(record_type=['commit'],
                                   loc=[100, 200, 300],
                                   module=['glance'])):
         response = self.app.get('/api/1.0/stats/modules?metric=loc&'
                                 'project_type=all')
         stats = test_api.load_json(response)['stats']
         self.assertEqual(2, len(stats))
         self.assertEqual(600, stats[0]['metric'])
         self.assertEqual('glance', stats[0]['id'])
         self.assertEqual(60, stats[1]['metric'])
         self.assertEqual('nova', stats[1]['id'])
    def test_get_module(self):
        with test_api.make_runtime_storage(
                {
                    'repos': [
                        {'module': 'nova', 'organization': 'openstack',
                         'uri': 'git://git.openstack.org/openstack/nova.git'}],
                    'module_groups': {
                        'nova-group': {'id': 'nova-group',
                                       'module_group_name': 'nova-group',
                                       'modules': ['nova-cli', 'nova'],
                                       'tag': 'group'},
                        'nova': test_api.make_module('nova'),
                        'nova-cli': test_api.make_module('nova-cli'),
                    },
                    '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'])):

            response = self.app.get('/api/1.0/modules/nova')
            module = test_api.load_json(response)['module']
            self.assertEqual(
                {'id': 'nova',
                 'modules': [
                     {'module_name': 'nova',
                      'repo_uri': 'git://git.openstack.org/openstack/nova.git'}
                 ],
                 'name': 'Nova', 'tag': 'module'}, module)

            response = self.app.get('/api/1.0/modules/nova-group')
            module = test_api.load_json(response)['module']
            self.assertEqual(
                {'id': 'nova-group',
                 'modules': [
                     {'module_name': 'nova-cli'},
                     {'module_name': 'nova',
                      'repo_uri': 'git://git.openstack.org/openstack/nova.git'}
                 ],
                 'name': 'Nova-group', 'tag': 'group'}, module)
Beispiel #10
0
 def test_get_modules(self):
     data = {
         'repos': [
             {'module': 'nova', 'organization': 'openstack',
              'uri': 'https://git.openstack.org/openstack/nova.git'},
             {'module': 'glance', 'organization': 'openstack',
              'uri': 'https://git.openstack.org/openstack/glance.git'}
         ],
         'releases': [{'release_name': 'prehistory',
                       'end_date': 1234567890},
                      {'release_name': 'icehouse',
                       'end_date': 1234567890}],
         'module_groups': {
             'openstack': {'id': 'openstack',
                           'module_group_name': 'openstack',
                           'modules': ['nova', 'glance'],
                           'tag': 'group'},
             'nova': test_api.make_module('nova'),
             'glance': test_api.make_module('glance'),
         },
         'project_types': [
             {'id': 'all', 'title': 'All',
              'modules': ['nova', 'glance']}]}
     with test_api.make_runtime_storage(
             data,
             test_api.make_records(record_type=['commit'],
                                   loc=[10, 20, 30],
                                   module=['nova']),
             test_api.make_records(record_type=['commit'],
                                   loc=[100, 200, 300],
                                   module=['glance'])):
         response = self.app.get('/api/1.0/stats/modules?metric=loc&'
                                 'project_type=all')
         stats = test_api.load_json(response)['stats']
         self.assertEqual(2, len(stats))
         self.assertEqual(600, stats[0]['metric'])
         self.assertEqual('glance', stats[0]['id'])
         self.assertEqual(60, stats[1]['metric'])
         self.assertEqual('nova', stats[1]['id'])
Beispiel #11
0
 def test_users(self):
     with test_api.make_runtime_storage(
         {
             "repos": [
                 {"module": "nova", "organization": "openstack", "uri": "git://git.openstack.org/openstack/nova.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": {"nova": test_api.make_module("nova"), "glance": test_api.make_module("glance")},
             "user:john_doe": {"user_name": "John Doe"},
             "user:bill_smith": {"user_name": "Bill Smith"},
         },
         test_api.make_records(record_type=["commit"], module=["nova"], user_id=["john_doe", "bill_smith"]),
     ):
         response = self.app.get("/api/1.0/users?" "module=nova&metric=commits")
         users = test_api.load_json(response)["data"]
         self.assertEqual(2, len(users))
         self.assertIn({"id": "john_doe", "text": "John Doe"}, users)
         self.assertIn({"id": "bill_smith", "text": "Bill Smith"}, users)
Beispiel #12
0
    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)
    def test_get_company(self):
        data = {
            'repos': [
                {'module': 'nova', 'project_type': 'openstack',
                 'organization': 'openstack',
                 'uri': 'https://git.openstack.org/openstack/nova.git'},
                {'module': 'glance', 'project_type': 'openstack',
                 'organization': 'openstack',
                 'uri': 'https://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']}]}
        with test_api.make_runtime_storage(
                data,
                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)
Beispiel #14
0
 def test_get_engineers_extended(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'}
                 ],
                 'releases': [{'release_name': 'prehistory',
                               'end_date': 1234567890},
                              {'release_name': 'icehouse',
                               'end_date': 1234567890}],
                 'module_groups': {
                     'openstack': {'id': 'openstack',
                                   'module_group_name': 'openstack',
                                   'modules': ['nova', 'glance'],
                                   'tag': 'group'},
                     'nova': test_api.make_module('nova'),
                     'glance': test_api.make_module('glance'),
                 },
                 'project_types': [
                     {'id': 'all', 'title': 'All',
                      'modules': ['nova', 'glance']}],
                 'user:john_doe': {
                     'seq': 1, 'user_id': 'john_doe',
                     'user_name': 'John Doe',
                     'companies': [{'company_name': 'NEC', 'end_date': 0}],
                     'emails': ['*****@*****.**'], 'core': []},
                 'user:smith': {
                     'seq': 1, 'user_id': 'smith',
                     'user_name': 'Bill Smith',
                     'companies': [{'company_name': 'IBM', 'end_date': 0}],
                     'emails': ['*****@*****.**'], 'core': []}},
             test_api.make_records(record_type=['commit'],
                                   loc=[10, 20, 30],
                                   module=['nova'],
                                   user_id=['john_doe']),
             test_api.make_records(record_type=['review'],
                                   primary_key=['0123456789', '9876543210'],
                                   module=['glance']),
             test_api.make_records(record_type=['mark'],
                                   review_id=['0123456789', '9876543210'],
                                   module=['glance'],
                                   value=[1],
                                   type=['Code-Review'],
                                   author_name=['John Doe'],
                                   user_id=['john_doe']),
             test_api.make_records(record_type=['mark'],
                                   review_id=['0123456789'],
                                   module=['glance'],
                                   author_name=['Bill Smith'],
                                   user_id=['smith'])):
         response = self.app.get('/api/1.0/stats/engineers_extended?'
                                 'project_type=all')
         stats = test_api.load_json(response)['stats']
         self.assertEqual(2, len(stats))
         self.assertEqual(2, stats[0]['mark'])
         self.assertEqual('john_doe', stats[0]['id'])
         self.assertEqual(3, stats[0]['commit'])
         self.assertEqual(2, stats[0]['1'])
Beispiel #15
0
 def test_get_engineers(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'
             }],
             'releases': [{
                 'release_name': 'prehistory',
                 'end_date': 1234567890
             }, {
                 'release_name': 'icehouse',
                 'end_date': 1234567890
             }],
             'module_groups': {
                 'openstack': {
                     'id': 'openstack',
                     'module_group_name': 'openstack',
                     'modules': ['nova', 'glance'],
                     'tag': 'group'
                 },
                 'nova': test_api.make_module('nova'),
                 'glance': test_api.make_module('glance'),
             },
             'project_types': [{
                 'id': 'all',
                 'title': 'All',
                 'modules': ['nova', 'glance']
             }],
             'user:john_doe': {
                 'seq': 1,
                 'user_id': 'john_doe',
                 'user_name': 'John Doe',
                 'companies': [{
                     'company_name': 'NEC',
                     'end_date': 0
                 }],
                 'emails': ['*****@*****.**'],
                 'core': []
             },
             'user:bill': {
                 'seq': 1,
                 'user_id': 'bill',
                 'user_name': 'Bill Smith',
                 'companies': [{
                     'company_name': 'IBM',
                     'end_date': 0
                 }],
                 'emails': ['*****@*****.**'],
                 'core': []
             }
         },
             test_api.make_records(record_type=['commit'],
                                   loc=[10, 20, 30],
                                   module=['nova'],
                                   user_id=['john_doe']),
             test_api.make_records(record_type=['commit'],
                                   loc=[100, 200, 300],
                                   module=['glance'],
                                   user_id=['john_doe']),
             test_api.make_records(record_type=['review'],
                                   primary_key=['0123456789'],
                                   module=['glance']),
             test_api.make_records(record_type=['mark'],
                                   review_id=['0123456789'],
                                   module=['glance'],
                                   user_id=['john_doe', 'bill'])):
         response = self.app.get('/api/1.0/stats/engineers?metric=loc&'
                                 'project_type=all')
         stats = test_api.load_json(response)['stats']
         self.assertEqual(1, len(stats))
         self.assertEqual(660, stats[0]['metric'])
Beispiel #16
0
    def test_get_engineers_extended(self):
        data = {
            'repos': [{
                'module': 'nova',
                'project_type': 'openstack',
                'organization': 'openstack',
                'uri': 'https://git.openstack.org/openstack/nova.git'
            }, {
                'module': 'glance',
                'project_type': 'openstack',
                'organization': 'openstack',
                'uri': 'https://git.openstack.org/openstack/glance.git'
            }],
            'releases': [{
                'release_name': 'prehistory',
                'end_date': 1234567890
            }, {
                'release_name': 'icehouse',
                'end_date': 1234567890
            }],
            'module_groups': {
                'openstack': {
                    'id': 'openstack',
                    'module_group_name': 'openstack',
                    'modules': ['nova', 'glance'],
                    'tag': 'group'
                },
                'nova': test_api.make_module('nova'),
                'glance': test_api.make_module('glance'),
            },
            'project_types': [{
                'id': 'all',
                'title': 'All',
                'modules': ['nova', 'glance']
            }],
            'user:john_doe': {
                'seq': 1,
                'user_id': 'john_doe',
                'user_name': 'John Doe',
                'companies': [{
                    'company_name': 'NEC',
                    'end_date': 0
                }],
                'emails': ['*****@*****.**'],
                'core': []
            },
            'user:smith': {
                'seq': 1,
                'user_id': 'smith',
                'user_name': 'Bill Smith',
                'companies': [{
                    'company_name': 'IBM',
                    'end_date': 0
                }],
                'emails': ['*****@*****.**'],
                'core': []
            }
        }

        with test_api.make_runtime_storage(
                data,
                test_api.make_records(record_type=['commit'],
                                      loc=[10, 20, 30],
                                      module=['nova'],
                                      user_id=['john_doe']),
                test_api.make_records(record_type=['review'],
                                      primary_key=['0123456789', '9876543210'],
                                      module=['glance']),
                test_api.make_records(record_type=['mark'],
                                      review_id=['0123456789', '9876543210'],
                                      module=['glance'],
                                      value=[1],
                                      type=['Code-Review'],
                                      author_name=['John Doe'],
                                      user_id=['john_doe']),
                test_api.make_records(record_type=['mark'],
                                      review_id=['0123456789'],
                                      module=['glance'],
                                      author_name=['Bill Smith'],
                                      user_id=['smith'])):
            response = self.app.get('/api/1.0/stats/engineers_extended?'
                                    'project_type=all')
            stats = test_api.load_json(response)['stats']
            self.assertEqual(2, len(stats))
            self.assertEqual(2, stats[0]['mark'])
            self.assertEqual('john_doe', stats[0]['id'])
            self.assertEqual(3, stats[0]['commit'])
            self.assertEqual(2, stats[0]['1'])