mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-25 19:14:04 +00:00
zdtm: Cleanup sockets00
Don't mix various types of sockets in a single test case, in case of problems it become harder to fins which kind of socket failed. The removed test cases will be addressed in further patches. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
parent
eeabd33219
commit
7dad6fcfdf
1 changed files with 3 additions and 150 deletions
|
|
@ -16,30 +16,15 @@
|
|||
|
||||
#include "zdtmtst.h"
|
||||
|
||||
/* FIXME Need gram sockets tests */
|
||||
|
||||
const char *test_doc = "Test unix stream sockets\n";
|
||||
const char *test_author = "Cyrill Gorcunov <gorcunov@openvz.org";
|
||||
|
||||
#define SK_DATA "packet"
|
||||
|
||||
#define SK_DATA_BOUND "data-packet-bound"
|
||||
#define SK_DATA_CONN "data-packet-conn"
|
||||
#define SK_DATA_BOUND_CONN "data-packet-bound-conn"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int ssk_icon[4];
|
||||
int ssk_pair[2];
|
||||
struct sockaddr_un addr;
|
||||
struct sockaddr_un name_bound;
|
||||
struct sockaddr_un name_conn;
|
||||
struct sockaddr_un name_bound_conn;
|
||||
int sk_dgram_bound_client;
|
||||
int sk_dgram_bound_server;
|
||||
int sk_dgram_conn_client;
|
||||
int sk_dgram_conn_server;
|
||||
int sk_dgram_bound_conn;
|
||||
unsigned int addrlen;
|
||||
|
||||
char path[PATH_MAX];
|
||||
|
|
@ -101,132 +86,25 @@ int main(int argc, char *argv[])
|
|||
exit(1);
|
||||
}
|
||||
|
||||
if (socketpair(AF_UNIX, SOCK_STREAM, 0, ssk_pair) == -1) {
|
||||
fail("socketpair\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
sk_dgram_bound_client = socket(AF_UNIX, SOCK_DGRAM, 0);
|
||||
sk_dgram_bound_server = socket(AF_UNIX, SOCK_DGRAM, 0);
|
||||
sk_dgram_conn_client = socket(AF_UNIX, SOCK_DGRAM, 0);
|
||||
sk_dgram_conn_server = socket(AF_UNIX, SOCK_DGRAM, 0);
|
||||
sk_dgram_bound_conn = socket(AF_UNIX, SOCK_DGRAM, 0);
|
||||
|
||||
if (sk_dgram_conn_server < 0 ||
|
||||
sk_dgram_bound_server < 0 ||
|
||||
sk_dgram_conn_client < 0 ||
|
||||
sk_dgram_conn_server < 0 ||
|
||||
sk_dgram_bound_conn < 0) {
|
||||
fail("socket");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
snprintf(path, sizeof(path), "%s/test-socket-bound", cwd);
|
||||
unlink(path);
|
||||
|
||||
name_bound.sun_family = AF_UNIX;
|
||||
strncpy(name_bound.sun_path, path, sizeof(name_bound.sun_path));
|
||||
|
||||
snprintf(path, sizeof(path), "%s/test-socket-conn", cwd);
|
||||
unlink(path);
|
||||
|
||||
name_conn.sun_family = AF_UNIX;
|
||||
strncpy(name_conn.sun_path, path, sizeof(name_conn.sun_path));
|
||||
|
||||
snprintf(path, sizeof(path), "%s/test-socket-bound-conn", cwd);
|
||||
unlink(path);
|
||||
|
||||
name_bound_conn.sun_family = AF_UNIX;
|
||||
strncpy(name_bound_conn.sun_path, path, sizeof(name_bound_conn.sun_path));
|
||||
|
||||
ret = bind(sk_dgram_bound_server, &name_bound, sizeof(name_bound));
|
||||
if (ret) {
|
||||
fail("bind");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
ret = bind(sk_dgram_conn_server, &name_conn, sizeof(name_conn));
|
||||
if (ret) {
|
||||
fail("bind");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
ret = bind(sk_dgram_bound_conn, &name_bound_conn, sizeof(name_bound_conn));
|
||||
if (ret) {
|
||||
fail("bind");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
ret = connect(sk_dgram_conn_client, &name_conn, sizeof(name_conn));
|
||||
if (ret) {
|
||||
fail("connect");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
ret = connect(sk_dgram_bound_conn, &name_bound_conn, sizeof(name_bound_conn));
|
||||
if (ret) {
|
||||
fail("connect");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
write(ssk_pair[0], SK_DATA, sizeof(SK_DATA));
|
||||
read(ssk_pair[1], &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("stream : '%s'\n", buf);
|
||||
|
||||
sendto(sk_dgram_bound_client, SK_DATA_BOUND, sizeof(SK_DATA_BOUND), 0,
|
||||
&name_bound, sizeof(name_bound));
|
||||
read(sk_dgram_bound_server, &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA_BOUND)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("dgram-bound : '%s'\n", buf);
|
||||
|
||||
write(sk_dgram_conn_client, SK_DATA_CONN, sizeof(SK_DATA_CONN));
|
||||
read(sk_dgram_conn_server, &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA_CONN)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("dgram-conn : '%s'\n", buf);
|
||||
|
||||
write(sk_dgram_bound_conn, SK_DATA_BOUND_CONN, sizeof(SK_DATA_BOUND_CONN));
|
||||
read(sk_dgram_bound_conn, &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA_BOUND_CONN)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("dgram-bound-conn : '%s'\n", buf);
|
||||
|
||||
test_daemon();
|
||||
test_waitsig();
|
||||
|
||||
write(ssk_pair[0], SK_DATA, sizeof(SK_DATA));
|
||||
read(ssk_pair[1], &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("stream : '%s'\n", buf);
|
||||
|
||||
ret = accept(ssk_icon[0], NULL, NULL);
|
||||
if (ret < 0) {
|
||||
fail("accept\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
write(ssk_icon[1], SK_DATA, sizeof(SK_DATA));
|
||||
read(ret, &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("stream : '%s'\n", buf);
|
||||
test_msg("stream1 : '%s'\n", buf);
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
write(ssk_icon[2], SK_DATA, sizeof(SK_DATA));
|
||||
read(ssk_icon[3], &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA)) {
|
||||
|
|
@ -235,31 +113,6 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
test_msg("stream2 : '%s'\n", buf);
|
||||
|
||||
sendto(sk_dgram_bound_client, SK_DATA_BOUND, sizeof(SK_DATA_BOUND), 0,
|
||||
&name_bound, sizeof(name_bound));
|
||||
read(sk_dgram_bound_server, &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA_BOUND)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("dgram-bound : '%s'\n", buf);
|
||||
|
||||
write(sk_dgram_conn_client, SK_DATA_CONN, sizeof(SK_DATA_CONN));
|
||||
read(sk_dgram_conn_server, &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA_CONN)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("dgram-conn : '%s'\n", buf);
|
||||
|
||||
write(sk_dgram_bound_conn, SK_DATA_BOUND_CONN, sizeof(SK_DATA_BOUND_CONN));
|
||||
read(sk_dgram_bound_conn, &buf, sizeof(buf));
|
||||
if (strcmp(buf, SK_DATA_BOUND_CONN)) {
|
||||
fail("data corrupted\n");
|
||||
exit(1);
|
||||
}
|
||||
test_msg("dgram-bound-conn : '%s'\n", buf);
|
||||
|
||||
pass();
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue