comparison m-toolbox/test/repo_tests/test_timespan.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 function test_timespan(varargin)
2 % A test function to submit a timespan to the repository. The timespan is then
3 % retrieved and compared to the original one.
4 %
5 % Usage: test_timespan() - connects to Hannover repository
6 % test_timespan(conn) - connects to the repository specified by
7 % the database conn object.
8 %
9 % M Hewitson 24-02-08
10 %
11 % $Id: test_timespan.m,v 1.7 2008/11/14 09:51:55 hewitson Exp $
12 %
13
14 if nargin == 0
15 conn = utils.mysql.connect('130.75.117.67', 'ltpda_test');
16 else
17 conn = varargin{1};
18 end
19
20 %% Submit a timeformat
21 t1 = time();
22 t2 = t1 + 100;
23
24 p = timespan(t1, t2);
25
26 sinfo.conn = conn;
27 sinfo.experiment_title = 'submit timespan';
28 sinfo.experiment_description = 'this is just a test of the whole thing';
29 sinfo.analysis_description = 'just submitting';
30 sinfo.quantity = 'none';
31 sinfo.keywords = 'none';
32 sinfo.reference_ids = '1,2';
33 sinfo.additional_comments = 'none';
34 sinfo.additional_authors = 'no one';
35
36 [ids, cid] = submit(p, sinfo);
37
38 %% Retrieve the object
39
40 q = timespan(plist('conn', conn, 'cid', cid))
41
42 %% Close connection
43 if nargin == 0
44 close(conn);
45 end
46
47
48 %% Test
49
50 if ne(p,q,'hist')
51 error('### timespan objects are not the same.')
52 end