blob: 71bd86723ade1b74eb958d2f2e2af0573e2e7291 (
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
|
/*
* Copyright (C) 2007-2008 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include "bu/unitsuite.h"
#include "bu/file.h"
#include "bu/tafreader.h"
#include <string.h>
#include <unistd.h>
class Unit : public Bu::UnitSuite
{
public:
Unit()
{
setName("taf");
addTest( Unit::read1 );
}
virtual ~Unit()
{
}
void read1()
{
#define FN_TMP ("/tmp/tmpXXXXXXXX")
Bu::FString sFnTmp(FN_TMP);
Bu::File fOut = Bu::File::tempFile( sFnTmp );
const char *data =
"{test: name=\"Bob\"}"
;
fOut.write(data,strlen(data));
fOut.close();
Bu::File fIn(sFnTmp.getStr(), Bu::File::Read );
Bu::TafReader tr(fIn);
Bu::TafGroup *tn = tr.readGroup();
unitTest( !strcmp("Bob", tn->getProperty("name").getStr()) );
delete tn;
unlink(sFnTmp.getStr());
#undef FN_TMP
}
};
int main( int argc, char *argv[] )
{
return Unit().run( argc, argv );
}
|