aboutsummaryrefslogtreecommitdiff
path: root/src/unit/taf.cpp
blob: 94b461336c67819aa4b2419f4e10728c71fab29a (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
#include "unitsuite.h"
#include "file.h"
#include "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, "wb" );
		const char *data =
"{test: name=\"Bob\"}"
;
		fOut.write(data,strlen(data));
		fOut.close();

		Bu::File fIn(sFnTmp.getStr(), "rb");
		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 );
}