summaryrefslogtreecommitdiff
path: root/src/gtm/test2/test_connect2.c
blob: a30c07930c459d54f0c25b2f3603168b61b66843 (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
56
57
58
59
/*
 * Copyright (c) 2010-2012 Postgres-XC Development Group
 */

#include <sys/types.h>
#include <unistd.h>

#include "gtm/libpq-fe.h"
#include "gtm/gtm_c.h"
#include "gtm/gtm_client.h"

#define client_log(x)	printf x

void
setUp()
{
	sprintf(connect_string, "host=localhost port=6666 node_name=one remote_type=%d",
		GTM_NODE_GTM);
	
	conn = PQconnectGTM(connect_string);
	if (conn == NULL)
	{
		client_log(("Error in connection\n"));
		exit(1);
	}
	client_log(("PGconnectGTM() ok.\n"));
}

void
tearDown()
{
	GTMPQfinish(conn);
}


void
test11()
{
	clean_active();
	clean_standby();

	start_active();
	sleep(10);
	start_standby();
	sleep(10);
	//	stop_active();
	kill_standby();
	sleep(10);
	kill_active();
}

int
main(int argc, char *argv[])
{
	test11();

	return 0;
}