summaryrefslogtreecommitdiff
path: root/saharaclient/tests/unit/test_images.py
blob: de13aa40c8467324b02dd936cec815752e2c2b30 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Copyright (c) 2014 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 saharaclient.api import images
from saharaclient.tests.unit import base

from oslo_serialization import jsonutils as json


class ImageTest(base.BaseTestCase):
    body = {
        'username': 'name',
        'description': 'descr'
    }

    def test_images_list(self):
        url = self.URL + '/images'
        self.responses.get(url, json={'images': [self.body]})

        resp = self.client.images.list()

        self.assertEqual(url, self.responses.last_request.url)
        self.assertIsInstance(resp[0], images.Image)
        self.assertFields(self.body, resp[0])

    def test_images_get(self):
        url = self.URL + '/images/id'
        self.responses.get(url, json={'image': self.body})

        resp = self.client.images.get('id')

        self.assertEqual(url, self.responses.last_request.url)
        self.assertIsInstance(resp, images.Image)
        self.assertFields(self.body, resp)

    def test_unregister_image(self):
        url = self.URL + '/images/id'
        self.responses.delete(url, status_code=204)

        self.client.images.unregister_image('id')

        self.assertEqual(url, self.responses.last_request.url)

    def test_update_image(self):
        url = self.URL + '/images/id'
        self.responses.post(url, json={'image': self.body}, status_code=202)

        self.client.images.update_image('id', 'name', 'descr')

        self.assertEqual(url, self.responses.last_request.url)
        self.assertEqual(self.body,
                         json.loads(self.responses.last_request.body))

    def test_update_tags(self):
        url = self.URL + '/images/id'
        tag_url = self.URL + '/images/id/tag'
        untag_url = self.URL + '/images/id/untag'

        body = self.body.copy()
        body['tags'] = ['fake', '0.1']

        self.responses.post(tag_url, json={'image': body},
                            status_code=202)
        self.responses.post(untag_url, json={'image': body},
                            status_code=202)
        self.responses.get(url, json={'image': body})

        resp = self.client.images.update_tags('id', ['username', 'tag'])
        self.assertIsInstance(resp, images.Image)
        self.assertFields(self.body, resp)

        resp = self.client.images.update_tags('id', ['username'])
        self.assertIsInstance(resp, images.Image)
        self.assertFields(self.body, resp)