summaryrefslogtreecommitdiffstats
path: root/test/unittest/test_func_arg.py
blob: 1b9102c30b11d3ff2a5d57989cd2959b694af591 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
##
## Copyright 2007, Red Hat, Inc
## see AUTHORS
##
## This software may be freely redistributed under the terms of the GNU
## general public license.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
##

#tester module for ArgCompatibility
from func.minion.func_arg import ArgCompatibility

class TestArgCompatibility:
   
    def setUp(self):
        #create the simple object 
        self.ac = ArgCompatibility(self.dummy_arg_getter())

    def test_arg_compatibility(self):
        """
        Testing the method argument compatiblity
        """
        result = self.ac.validate_all()
        assert result == True
        
        self.ac = ArgCompatibility(self.dummy_no_getter())
        result = self.ac.validate_all()
        assert result == True
        
        self.ac = ArgCompatibility(self.dummy_empty_args())
        result = self.ac.validate_all()
        assert result == True
    
    def dummy_no_getter(self):
        return {}

    def dummy_empty_args(self):
        return{
                'myfunc':{
                    'args':{},
                    'description':'Cool methods here'
                    }
                }

    def dummy_arg_getter(self):
        """
        A simple method to test the stuff we have written for 
        arg compatiblity. I just return a dict with proper stuff
        Should more an more tests here to see if didnt miss something
        """
        return {
            'hifunc':{
               
                'args':{
                'app':{
                    'type':'int',
                    'range':[0,100],
                    'optional':False,
                    'default' : 12
                    },
                
                'platform':{
                    'type':'string',
                    'min_length':4,
                    'max_length':33,
                    'options':["fedora","redhat","ubuntu"],
                    'description':"Hey im a fedora fan",
                    'default':'fedora8',
                        },
                
                'is_independent':{
                    'type':'boolean',
                    'default' :False,
                    'description':'Are you independent ?',
                    'optional':False
                    },
                                
                'some_string':{
                    'type':'string',
                    'validator': "^[a-zA-Z]$",
                    'description':'String to be validated',
                    'default':'makkalot',
                    'optional':False}, # validator is a re string for those whoo need better validation,so when we have options there is no need to use validator and reverse is True
                #to define also a float we dont need it actually but maybe useful for the UI stuff.
                'some_float':{
                    'type':'float',
                    'description':'The float point value',
                    'default':33.44,
                    'optional':False
                    },

                'some_iterable':{
                    'type':'list',
                    'description':'The value and description for *arg',
                    'optional':True, #that is where it makes sense
                    'validator':'^[0-9]+$',#maybe useful to say it is to be a number for example
                    },

                'some_hash':{
                    'type':'hash',
                    'description':"Dummy desc here",
                    'optional':True, #of course it is,
                    'validator':"^[a-z]*$",#only for values not keys
                    
                    }
                },
                'description':"The dummy method description",
              }
              }