summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/t/00unit/lib/common/serverutil.c
blob: dfbb27156f634ad552fc5054f043bbac5dd5cc7e (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
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
88
89
90
91
92
93
94
95
/*
 * Copyright (c) 2014 DeNA Co., Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to
 * deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 * sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */
#include <stdlib.h>
#include "../../test.h"
#include "../../../../lib/common/serverutil.c"

static void test_server_starter(void)
{
    int *fds;
    size_t num_fds;

    unsetenv("SERVER_STARTER_PORT");
    num_fds = h2o_server_starter_get_fds(&fds);
    ok(num_fds == 0);

    setenv("SERVER_STARTER_PORT", "0.0.0.0:80=3", 1);
    num_fds = h2o_server_starter_get_fds(&fds);
    ok(num_fds == 1);
    ok(fds[0] == 3);

    setenv("SERVER_STARTER_PORT", "0.0.0.0:80=3;/tmp/foo.sock=4", 1);
    num_fds = h2o_server_starter_get_fds(&fds);
    ok(num_fds == 2);
    ok(fds[0] == 3);
    ok(fds[1] == 4);

    setenv("SERVER_STARTER_PORT", "0.0.0.0:80=foo", 1);
    num_fds = h2o_server_starter_get_fds(&fds);
    ok(num_fds == SIZE_MAX);

    /* without bind address */
    setenv("SERVER_STARTER_PORT", "50908=4", 1);
    num_fds = h2o_server_starter_get_fds(&fds);
    ok(num_fds == 1);
    ok(fds[0] == 4);
}

static void test_read_command(void)
{
    char *argv[] = {"t/00unit/assets/read_command.pl", "hello", NULL};
    h2o_buffer_t *resp;
    int ret, status;

    /* success */
    ret = h2o_read_command(argv[0], argv, &resp, &status);
    ok(ret == 0);
    if (ret == 0) {
        ok(WIFEXITED(status));
        ok(WEXITSTATUS(status) == 0);
        ok(h2o_memis(resp->bytes, resp->size, H2O_STRLIT("hello")));
        h2o_buffer_dispose(&resp);
    }

    /* exit status */
    setenv("READ_COMMAND_EXIT_STATUS", "75", 1);
    ret = h2o_read_command(argv[0], argv, &resp, &status);
    ok(ret == 0);
    if (ret == 0) {
        ok(WIFEXITED(status));
        ok(WEXITSTATUS(status) == 75);
        ok(h2o_memis(resp->bytes, resp->size, H2O_STRLIT("hello")));
        h2o_buffer_dispose(&resp);
    }
    unsetenv("READ_COMMAND_EXIT_STATUS");

    /* command not an executable */
    argv[0] = "t/00unit/assets";
    ret = h2o_read_command(argv[0], argv, &resp, &status);
    ok(ret != 0 || (ret == 0 && WIFEXITED(status) && WEXITSTATUS(status) == 127));
}

void test_lib__common__serverutil_c(void)
{
    subtest("server-starter", test_server_starter);
    subtest("read-command", test_read_command);
}