2018-05-15 12:13:44 +00:00
|
|
|
|
|
|
|
#include <machinarium.h>
|
|
|
|
#include <odyssey_test.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
static void
|
|
|
|
server(void *arg)
|
|
|
|
{
|
|
|
|
(void)arg;
|
|
|
|
machine_io_t *server = machine_io_create();
|
|
|
|
test(server != NULL);
|
|
|
|
|
|
|
|
struct sockaddr_in sa;
|
|
|
|
sa.sin_family = AF_INET;
|
|
|
|
sa.sin_addr.s_addr = inet_addr("127.0.0.1");
|
|
|
|
sa.sin_port = htons(7778);
|
|
|
|
int rc;
|
|
|
|
rc = machine_bind(server, (struct sockaddr*)&sa);
|
|
|
|
test(rc == 0);
|
|
|
|
|
|
|
|
machine_io_t *client;
|
|
|
|
rc = machine_accept(server, &client, 16, 1, UINT32_MAX);
|
|
|
|
test(rc == 0);
|
|
|
|
|
|
|
|
int chunk_size = 100 * 1024;
|
|
|
|
char *chunk = malloc(chunk_size);
|
|
|
|
test(chunk != NULL);
|
|
|
|
memset(chunk, 'x', chunk_size);
|
|
|
|
|
|
|
|
int chunk_pos = 1;
|
|
|
|
while (chunk_pos < chunk_size)
|
|
|
|
{
|
|
|
|
rc = machine_write(client, chunk, chunk_pos, UINT32_MAX);
|
|
|
|
test(rc == 0);
|
|
|
|
|
|
|
|
uint32_t ack = 0;
|
|
|
|
rc = machine_read(client, (char*)&ack, sizeof(ack), UINT32_MAX);
|
|
|
|
test(ack == 1);
|
|
|
|
|
|
|
|
chunk_pos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(chunk);
|
|
|
|
|
|
|
|
rc = machine_close(client);
|
|
|
|
test(rc == 0);
|
|
|
|
machine_io_free(client);
|
|
|
|
|
|
|
|
rc = machine_close(server);
|
|
|
|
test(rc == 0);
|
|
|
|
machine_io_free(server);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client(void *arg)
|
|
|
|
{
|
|
|
|
(void)arg;
|
|
|
|
machine_io_t *client = machine_io_create();
|
|
|
|
test(client != NULL);
|
|
|
|
|
|
|
|
struct sockaddr_in sa;
|
|
|
|
sa.sin_family = AF_INET;
|
|
|
|
sa.sin_addr.s_addr = inet_addr("127.0.0.1");
|
|
|
|
sa.sin_port = htons(7778);
|
|
|
|
int rc;
|
|
|
|
rc = machine_connect(client, (struct sockaddr*)&sa, UINT32_MAX);
|
|
|
|
test(rc == 0);
|
|
|
|
|
|
|
|
int chunk_size = 100 * 1024;
|
|
|
|
char *chunk = malloc(chunk_size);
|
|
|
|
test(chunk != NULL);
|
|
|
|
|
2018-05-15 12:43:42 +00:00
|
|
|
char *chunk_cmp = malloc(chunk_size);
|
|
|
|
test(chunk_cmp != NULL);
|
|
|
|
memset(chunk_cmp, 'x', chunk_size);
|
|
|
|
|
2018-05-15 12:13:44 +00:00
|
|
|
int chunk_pos = 1;
|
|
|
|
while (chunk_pos < chunk_size)
|
|
|
|
{
|
|
|
|
rc = machine_read(client, chunk, chunk_pos, UINT32_MAX);
|
|
|
|
test(rc == 0);
|
|
|
|
|
2018-05-15 12:43:42 +00:00
|
|
|
test(memcmp(chunk, chunk_cmp, chunk_pos) == 0);
|
|
|
|
|
2018-05-15 12:13:44 +00:00
|
|
|
uint32_t ack = 1;
|
|
|
|
rc = machine_write(client, (char*)&ack, sizeof(ack), UINT32_MAX);
|
|
|
|
test(rc == 0);
|
|
|
|
|
|
|
|
chunk_pos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(chunk);
|
2018-05-15 12:43:42 +00:00
|
|
|
free(chunk_cmp);
|
2018-05-15 12:13:44 +00:00
|
|
|
|
|
|
|
rc = machine_close(client);
|
|
|
|
test(rc == 0);
|
|
|
|
machine_io_free(client);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_cs(void *arg)
|
|
|
|
{
|
|
|
|
(void)arg;
|
|
|
|
int rc;
|
|
|
|
rc = machine_coroutine_create(server, NULL);
|
|
|
|
test(rc != -1);
|
|
|
|
|
|
|
|
rc = machine_coroutine_create(client, NULL);
|
|
|
|
test(rc != -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
machinarium_test_read_var(void)
|
|
|
|
{
|
|
|
|
machinarium_init();
|
|
|
|
|
|
|
|
int id;
|
|
|
|
id = machine_create("test", test_cs, NULL);
|
|
|
|
test(id != -1);
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
rc = machine_wait(id);
|
|
|
|
test(rc != -1);
|
|
|
|
|
|
|
|
machinarium_free();
|
|
|
|
}
|