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
|
#include "unit/TestRunner.h"
#include "plugin/PluginVst2xId.h"
static int _testNewPluginVst2xId(void)
{
PluginVst2xId id = newPluginVst2xId();
assertUnsignedLongEquals(ZERO_UNSIGNED_LONG, id->id);
assertCharStringEquals(PLUGIN_VST2X_ID_UNKNOWN, id->idString);
freePluginVst2xId(id);
return 0;
}
static int _testNewPluginVst2xIdWithIntId(void)
{
PluginVst2xId id = newPluginVst2xIdWithId(0x61626364);
assertUnsignedLongEquals(0x61626364l, id->id);
assertCharStringEquals("abcd", id->idString);
freePluginVst2xId(id);
return 0;
}
static int _testNewPluginVst2xIdWithZeroIntId(void)
{
PluginVst2xId id = newPluginVst2xIdWithId(0);
assertUnsignedLongEquals(ZERO_UNSIGNED_LONG, id->id);
assertCharStringEquals(EMPTY_STRING, id->idString);
freePluginVst2xId(id);
return 0;
}
static int _testNewPluginVst2xIdWithStringId(void)
{
CharString c = newCharStringWithCString("abcd");
PluginVst2xId id = newPluginVst2xIdWithStringId(c);
assertUnsignedLongEquals(0x61626364l, id->id);
assertCharStringEquals(c->data, id->idString);
freePluginVst2xId(id);
freeCharString(c);
return 0;
}
static int _testNewPluginVst2xIdWithEmptyStringId(void)
{
CharString empty = newCharStringWithCString(EMPTY_STRING);
PluginVst2xId id = newPluginVst2xIdWithStringId(empty);
assertUnsignedLongEquals(ZERO_UNSIGNED_LONG, id->id);
assertCharStringEquals(PLUGIN_VST2X_ID_UNKNOWN, id->idString);
freePluginVst2xId(id);
freeCharString(empty);
return 0;
}
static int _testNewPluginVst2xIdWithNullStringId(void)
{
PluginVst2xId id = newPluginVst2xIdWithStringId(NULL);
assertUnsignedLongEquals(ZERO_UNSIGNED_LONG, id->id);
assertCharStringEquals(PLUGIN_VST2X_ID_UNKNOWN, id->idString);
freePluginVst2xId(id);
return 0;
}
static int _testNewPluginVst2xIdWithInvalidStringId(void)
{
CharString c = newCharStringWithCString("a");
PluginVst2xId id = newPluginVst2xIdWithStringId(c);
assertUnsignedLongEquals(ZERO_UNSIGNED_LONG, id->id);
assertCharStringEquals(PLUGIN_VST2X_ID_UNKNOWN, id->idString);
freePluginVst2xId(id);
freeCharString(c);
return 0;
}
TestSuite addPluginVst2xIdTests(void);
TestSuite addPluginVst2xIdTests(void)
{
TestSuite testSuite = newTestSuite("PluginVst2xId", NULL, NULL);
addTest(testSuite, "NewPluginVst2xId", _testNewPluginVst2xId);
addTest(testSuite, "NewPluginVst2xIdWithIntId", _testNewPluginVst2xIdWithIntId);
addTest(testSuite, "NewPluginVst2xIdWithZeroIntId", _testNewPluginVst2xIdWithZeroIntId);
addTest(testSuite, "NewPluginVst2xIdWithStringId", _testNewPluginVst2xIdWithStringId);
addTest(testSuite, "NewPluginVst2xIdWithNullStringId", _testNewPluginVst2xIdWithNullStringId);
addTest(testSuite, "NewPluginVst2xIdWithEmptyStringId", _testNewPluginVst2xIdWithEmptyStringId);
addTest(testSuite, "NewPluginVst2xIdWithInvalidStringId", _testNewPluginVst2xIdWithInvalidStringId);
return testSuite;
}
|