summaryrefslogtreecommitdiffstats
path: root/result_collection_api/opnfv_testapi/tests/unit/test_version.py
blob: b6fbf45dcd8f1245188149aef3839ac4e6d42729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
##############################################################################
# Copyright (c) 2016 ZTE Corporation
# feng.xiaowei@zte.com.cn
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import unittest

from test_base import TestBase
from opnfv_testapi.resources.models import Versions


class TestVersionBase(TestBase):
    def setUp(self):
        super(TestVersionBase, self).setUp()
        self.list_res = Versions
        self.basePath = '/versions'


class TestVersion(TestVersionBase):
    def test_success(self):
        code, body = self.get()
        self.assertEqual(200, code)
        self.assertEqual(len(body.versions), 1)
        self.assertEqual(body.versions[0].version, 'v1.0')
        self.assertEqual(body.versions[0].description, 'basics')

if __name__ == '__main__':
    unittest.main()