summaryrefslogtreecommitdiffstats
path: root/fluent-bit/tests/runtime/data/stackdriver/stackdriver_test_http_request.h
blob: 2b7ad82d35eef9db72bdbc2e00df96ab16571668 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#define HTTPREQUEST_COMMON_CASE	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"requestMethod\": \"test_requestMethod\","          \
            "\"requestUrl\": \"test_requestUrl\","      \
            "\"userAgent\": \"test_userAgent\","      \
            "\"remoteIp\": \"test_remoteIp\","          \
            "\"serverIp\": \"test_serverIp\","      \
            "\"referer\": \"test_referer\","          \
            "\"latency\": \"0s\","      \
            "\"protocol\": \"test_protocol\","      \
            "\"requestSize\": 123,"          \
            "\"responseSize\": 123,"      \
            "\"status\": 200,"      \
            "\"cacheFillBytes\": 123,"          \
            "\"cacheLookup\": true,"      \
            "\"cacheHit\": true,"      \
            "\"cacheValidatedWithOriginServer\": true"      \
        "}"     \
	"}]"

#define EMPTY_HTTPREQUEST	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
        "}"     \
	"}]"

#define HTTPREQUEST_IN_STRING "["		\
	"1591111124,"			\
	"{"				\
    "\"logging.googleapis.com/http_request\": \"some string\""		\
	"}]"

#define PARTIAL_HTTPREQUEST	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"cacheLookup\": true,"      \
            "\"cacheHit\": true,"      \
            "\"cacheValidatedWithOriginServer\": true"      \
        "}"     \
	"}]"

#define HTTPREQUEST_SUBFIELDS_IN_INCORRECT_TYPE	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"requestMethod\": 123,"          \
            "\"requestUrl\": 123,"      \
            "\"userAgent\": 123,"      \
            "\"remoteIp\": 123,"          \
            "\"serverIp\": true,"      \
            "\"referer\": true,"          \
            "\"latency\": false,"      \
            "\"protocol\": false,"      \
            "\"requestSize\": \"some string\","          \
            "\"responseSize\": true,"      \
            "\"status\": false,"      \
            "\"cacheFillBytes\": false,"          \
            "\"cacheLookup\": \"some string\","      \
            "\"cacheHit\": 123,"      \
            "\"cacheValidatedWithOriginServer\": 123"      \
        "}"     \
	"}]"

#define HTTPREQUEST_EXTRA_SUBFIELDS_EXISTED	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"requestMethod\": \"test_requestMethod\","          \
            "\"requestUrl\": \"test_requestUrl\","      \
            "\"userAgent\": \"test_userAgent\","      \
            "\"remoteIp\": \"test_remoteIp\","          \
            "\"serverIp\": \"test_serverIp\","      \
            "\"referer\": \"test_referer\","          \
            "\"latency\": \"0s\","      \
            "\"protocol\": \"test_protocol\","      \
            "\"requestSize\": 123,"          \
            "\"responseSize\": 123,"      \
            "\"status\": 200,"      \
            "\"cacheFillBytes\": 123,"          \
            "\"cacheLookup\": true,"      \
            "\"cacheHit\": true,"      \
            "\"cacheValidatedWithOriginServer\": true,"      \
            "\"extra_key1\": \"extra_val1\","          \
            "\"extra_key2\": 123,"      \
            "\"extra_key3\": true"          \
        "}"     \
	"}]"


/* Tests for 'latency' */
#define HTTPREQUEST_LATENCY_COMMON_CASE	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"latency\": \"  100.00  s  \""      \
        "}"     \
	"}]"

#define HTTPREQUEST_LATENCY_INVALID_SPACES	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"latency\": \"  100. 00  s  \""      \
        "}"     \
	"}]"

#define HTTPREQUEST_LATENCY_INVALID_STRING	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"latency\": \"  s100.00  s  \""      \
        "}"     \
	"}]"

#define HTTPREQUEST_LATENCY_INVALID_END	"["		\
	"1591111124,"			\
	"{"				\
        "\"logging.googleapis.com/http_request\": "		\
        "{"            \
            "\"latency\": \"  100.00    \""      \
        "}"     \
	"}]"