blob: 86fbf3f20afe1e4a588b39eaf4c6ce5a30e8c3d9 [file] [log] [blame]
QUICHE teamfd50a402018-12-07 22:54:05 -05001// Copyright 2016 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef QUICHE_HTTP2_HTTP2_STRUCTURES_TEST_UTIL_H_
6#define QUICHE_HTTP2_HTTP2_STRUCTURES_TEST_UTIL_H_
7
8#include "testing/gtest/include/gtest/gtest.h"
9#include "net/third_party/quiche/src/http2/http2_structures.h"
10#include "net/third_party/quiche/src/http2/platform/api/http2_string.h"
11#include "net/third_party/quiche/src/http2/test_tools/http2_random.h"
12#include "net/third_party/quiche/src/http2/tools/http2_frame_builder.h"
13
14namespace http2 {
15namespace test {
16
17template <class S>
18Http2String SerializeStructure(const S& s) {
19 Http2FrameBuilder fb;
20 fb.Append(s);
21 EXPECT_EQ(S::EncodedSize(), fb.size());
22 return fb.buffer();
23}
24
25// Randomize the members of out, in a manner that yields encodeable contents
26// (e.g. a "uint24" field has only the low 24 bits set).
27void Randomize(Http2FrameHeader* out, Http2Random* rng);
28void Randomize(Http2PriorityFields* out, Http2Random* rng);
29void Randomize(Http2RstStreamFields* out, Http2Random* rng);
30void Randomize(Http2SettingFields* out, Http2Random* rng);
31void Randomize(Http2PushPromiseFields* out, Http2Random* rng);
32void Randomize(Http2PingFields* out, Http2Random* rng);
33void Randomize(Http2GoAwayFields* out, Http2Random* rng);
34void Randomize(Http2WindowUpdateFields* out, Http2Random* rng);
35void Randomize(Http2AltSvcFields* out, Http2Random* rng);
36
37// Clear bits of header->flags that are known to be invalid for the
38// type. For unknown frame types, no change is made.
39void ScrubFlagsOfHeader(Http2FrameHeader* header);
40
41// Is the frame with this header padded? Only true for known/supported frame
42// types.
43bool FrameIsPadded(const Http2FrameHeader& header);
44
45// Does the frame with this header have Http2PriorityFields?
46bool FrameHasPriority(const Http2FrameHeader& header);
47
48// Does the frame with this header have a variable length payload (including
49// empty) payload (e.g. DATA or HEADERS)? Really a test of the frame type.
50bool FrameCanHavePayload(const Http2FrameHeader& header);
51
52// Does the frame with this header have a variable length HPACK payload
53// (including empty) payload (e.g. HEADERS)? Really a test of the frame type.
54bool FrameCanHaveHpackPayload(const Http2FrameHeader& header);
55
56} // namespace test
57} // namespace http2
58
59#endif // QUICHE_HTTP2_HTTP2_STRUCTURES_TEST_UTIL_H_