forked from python-gitlab/python-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_types.py
More file actions
66 lines (51 loc) · 2.01 KB
/
test_types.py
File metadata and controls
66 lines (51 loc) · 2.01 KB
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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2018 Gauvain Pocentek <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
try:
import unittest
except ImportError:
import unittest2 as unittest
from gitlab import types
class TestGitlabAttribute(unittest.TestCase):
def test_all(self):
o = types.GitlabAttribute("whatever")
self.assertEqual("whatever", o.get())
o.set_from_cli("whatever2")
self.assertEqual("whatever2", o.get())
self.assertEqual("whatever2", o.get_for_api())
o = types.GitlabAttribute()
self.assertEqual(None, o._value)
class TestListAttribute(unittest.TestCase):
def test_list_input(self):
o = types.ListAttribute()
o.set_from_cli("foo,bar,baz")
self.assertEqual(["foo", "bar", "baz"], o.get())
o.set_from_cli("foo")
self.assertEqual(["foo"], o.get())
def test_empty_input(self):
o = types.ListAttribute()
o.set_from_cli("")
self.assertEqual([], o.get())
o.set_from_cli(" ")
self.assertEqual([], o.get())
def test_get_for_api(self):
o = types.ListAttribute()
o.set_from_cli("foo,bar,baz")
self.assertEqual("foo,bar,baz", o.get_for_api())
class TestLowercaseStringAttribute(unittest.TestCase):
def test_get_for_api(self):
o = types.LowercaseStringAttribute("FOO")
self.assertEqual("foo", o.get_for_api())