Mercurial > hg > ltpda
comparison testing/utp_1.1/utps/smodel/utp_smodel_setAliases.m @ 44:409a22968d5e default
Add unit tests
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 18:42:11 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
43:bc767aaa99a8 | 44:409a22968d5e |
---|---|
1 % UTP_SMODEL_SETALIASES a set of UTPs for the smodel/setAliases method | |
2 % | |
3 % M Hewitson 06-08-08 | |
4 % | |
5 % $Id: utp_smodel_setAliases.m,v 1.1 2011/04/11 19:45:22 ingo Exp $ | |
6 % | |
7 | |
8 % <MethodDescription> | |
9 % | |
10 % The setAliases method of the smodel class sets the 'aliasNames' and | |
11 % 'aliasValues' properties. | |
12 % | |
13 % </MethodDescription> | |
14 | |
15 function results = utp_smodel_setAliases(varargin) | |
16 | |
17 % Check the inputs | |
18 if nargin == 0 | |
19 | |
20 % Some keywords | |
21 cl = 'smodel'; | |
22 mthd = 'setAliases'; | |
23 | |
24 disp('******************************************************'); | |
25 disp(['**** Running UTPs for ' cl '/' mthd]); | |
26 disp('******************************************************'); | |
27 | |
28 % Test objects | |
29 s1 = smodel('a1*x1 + a2*x2 + a3*x3'); | |
30 s1.setName(); | |
31 | |
32 s2 = smodel('a1*x1 + a2*x2'); | |
33 s2.setName(); | |
34 | |
35 s3 = smodel('a1*x1'); | |
36 s3.setName(); | |
37 | |
38 sv = [s1, s2, s1]; | |
39 sm = [s1, s2, s1; s1, s2, s1]; | |
40 | |
41 % Exception list for the UTPs: | |
42 [ple1,ple2,ple3,ple4,ple5,ple6] = get_test_ples(); | |
43 | |
44 % The setter method have different possibilities to set a property | |
45 args1 = {'x1', 123}; % obj.setAliases('x1', 123) | |
46 args2 = {'x1', 123, 'x2', 'asd'}; % obj.setAliases('x1', 123, 'x2', 'asd') | |
47 args3 = {{'x1', 'x2'}, {'asd', 123}}; % obj.setAliases({'x1', 'x2'}, {'asd', 123}) | |
48 args4 = {plist('names', 'x1', 'values', 123)}; % obj.setAliases(plist('names', 'x1', 'values', 123)) | |
49 args5 = {plist('names', {'x1', 'x2'}, 'values', {123, 'asd'})}; | |
50 | |
51 % Run the general tests | |
52 results(1) = utp_01(); | |
53 results(2) = utp_genericAnyShape(mthd, sv, args1, @algoTests); | |
54 results(3) = utp_genericAnyShape(mthd, sv, args2, @algoTests); | |
55 results(4) = utp_genericAnyShape(mthd, sv, args3, @algoTests); | |
56 results(5) = utp_genericAnyShape(mthd, sv, args4, @algoTests); | |
57 results(6) = utp_genericAnyShape(mthd, sv, args5, @algoTests); | |
58 results(7) = utp_genericAnyShape(mthd, sm, args2, @algoTests); | |
59 results(8) = utp_genericList(mthd, s1, s2, s3, args3, @algoTests); | |
60 results(9) = utp_genericHistory(mthd, s1, args2, ple2); | |
61 results(10) = utp_genericModify(mthd, s1, args5, @algoTests, ple1); | |
62 results(11) = utp_genericOutput(mthd, s1, s2, args2, @algoTests, ple2); % test the outputs | |
63 | |
64 disp('Done.'); | |
65 disp('******************************************************'); | |
66 | |
67 elseif nargin == 1 % Check for UTP functions | |
68 if strcmp(varargin{1}, 'isutp') | |
69 results = 1; | |
70 else | |
71 results = 0; | |
72 end | |
73 else | |
74 error('### Incorrect inputs') | |
75 end | |
76 | |
77 % Check that the property have the correct value | |
78 function atest = algoTests(in, out, idx, argsin) | |
79 atest = true; | |
80 % Check that the input and output objects are the same except the | |
81 % property 'aliases' and the history | |
82 ple = plist('EXCEPTIONS', {'created', 'proctime', 'UUID', 'hist', 'aliasNames', 'aliasValues'}); | |
83 if ~eq(in(idx), out(idx), ple), atest = false; end | |
84 if ~eq(in(idx).hist, out(idx).hist.inhists), atest = false; end | |
85 % Check that the parameter gets the correct value. | |
86 if isa(argsin{1}, 'plist') && argsin{1}.isparam('names') && argsin{1}.isparam('values') | |
87 argsin = argsin{1}; | |
88 % The value was set with a plist. | |
89 names = cellstr(argsin.find('names')); | |
90 values = argsin.find('values'); | |
91 if ~iscell(values) | |
92 values = num2cell(values); | |
93 end | |
94 else | |
95 if numel(argsin) == 2 && iscell(argsin{1}) && iscell(argsin{2}) | |
96 names = argsin{1}; | |
97 values = argsin{2}; | |
98 else | |
99 nArgsin = numel(argsin); | |
100 names = argsin(1:2:nArgsin); | |
101 values = argsin(2:2:nArgsin); | |
102 end | |
103 end | |
104 | |
105 % Check 'aliasNames' and 'aliasValues' | |
106 if ~isequal(out(idx).aliasNames, names), atest = false; end | |
107 if ~isequal(out(idx).aliasValues, values), atest = false; end | |
108 end | |
109 | |
110 %% UTP_01 | |
111 | |
112 % <TestDescription> | |
113 % | |
114 % Tests that the getInfo call works for this method. | |
115 % | |
116 % </TestDescription> | |
117 function result = utp_01 | |
118 | |
119 | |
120 % <SyntaxDescription> | |
121 % | |
122 % Test that the getInfo call works for no sets, all sets, and each set | |
123 % individually. | |
124 % | |
125 % </SyntaxDescription> | |
126 | |
127 try | |
128 % <SyntaxCode> | |
129 % Call for no sets | |
130 io(1) = feval('smodel.getInfo', mthd, 'none'); | |
131 % Call for all sets | |
132 io(2) = feval('smodel.getInfo', mthd); | |
133 % Call for each set | |
134 for kk=1:numel(io(2).sets) | |
135 io(kk+2) = feval('smodel.getInfo', mthd, io(2).sets{kk}); | |
136 end | |
137 % </SyntaxCode> | |
138 stest = true; | |
139 catch err | |
140 disp(err.message) | |
141 stest = false; | |
142 end | |
143 | |
144 % <AlgoDescription> | |
145 % | |
146 % 1) Check that getInfo call returned an minfo object in all cases. | |
147 % 2) Check that all plists have the correct parameters. | |
148 % | |
149 % </AlgoDescription> | |
150 | |
151 atest = true; | |
152 if stest | |
153 % <AlgoCode> | |
154 % check we have minfo objects | |
155 if isa(io, 'minfo') | |
156 % SET 'None' | |
157 if ~isempty(io(1).sets), atest = false; end | |
158 if ~isempty(io(1).plists), atest = false; end | |
159 % Check all Sets | |
160 if ~any(strcmpi(io(2).sets, 'Default')), atest = false; end | |
161 if numel(io(2).plists) ~= numel(io(2).sets), atest = false; end | |
162 % SET 'Default' | |
163 if io(3).plists.nparams ~= 2, atest = false; end | |
164 % Check key | |
165 if ~io(3).plists.isparam('names'), atest = false; end | |
166 if ~io(3).plists.isparam('values'), atest = false; end | |
167 % Check default value | |
168 if ~isEmptyCell(io(3).plists.find('names')), atest = false; end | |
169 if ~isEmptyCell(io(3).plists.find('values')), atest = false; end | |
170 % Check options | |
171 if ~isequal(io(3).plists.getOptionsForParam('names'), {{}}), atest = false; end | |
172 if ~isequal(io(3).plists.getOptionsForParam('values'), {{}}), atest = false; end | |
173 end | |
174 % </AlgoCode> | |
175 else | |
176 atest = false; | |
177 end | |
178 | |
179 % Return a result structure | |
180 result = utp_prepare_result(atest, stest, dbstack, mfilename); | |
181 end % END UTP_01 | |
182 | |
183 end |