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
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <CUnit/CUnit.h>
#include <cluster_api.h>
#include "client_test_common.h"
// OK case. Calling the APIs of Init and Term while the server is already started.
static void TestInitAndTermOK(void)
{
CU_ASSERT(clusterInit() == true);
CU_ASSERT(clusterTerm() == true);
}
// NG case. Call the API of Init function twice.
static void TestInitAndTermNG1(void)
{
CU_ASSERT(clusterInit() == true);
CU_ASSERT(clusterInit() == false);
CU_ASSERT(clusterTerm() == true);
}
// NG case. Call the API of Term function twice.
static void TestInitAndTermNG2(void)
{
CU_ASSERT(clusterInit() == true);
CU_ASSERT(clusterTerm() == true);
CU_ASSERT(clusterTerm() == false);
}
// NG case. Call the API of Term only.
static void TestInitAndTermNG3(void)
{
CU_ASSERT(clusterTerm() == false);
}
// NG case. Server is not ready.
static void TestInitAndTermNG4(void)
{
pid_t child;
stopDummyServer();
CU_ASSERT(clusterInit() == false);
CU_ASSERT(clusterTerm() == false);
if ((child = fork()) < 0) {
fprintf(stderr, "%s:%d Failed to fork() : %d\n", __FILE__, __LINE__, child);
exit(EXIT_FAILURE);
}
startDummyServer(child);
connectToDummyServer();
}
void SetTestSuiteInitAndTerm(void)
{
CU_pSuite testSuite;
testSuite = CU_add_suite("InitAndTerm", NULL, NULL);
CU_add_test(testSuite, "InitAndTerm_OK", TestInitAndTermOK);
CU_add_test(testSuite, "InitAndTerm_NG_1", TestInitAndTermNG1);
CU_add_test(testSuite, "InitAndTerm_NG_2", TestInitAndTermNG2);
CU_add_test(testSuite, "InitAndTerm_NG_3", TestInitAndTermNG3);
CU_add_test(testSuite, "InitAndTerm_NG_4", TestInitAndTermNG4);
}
|