QUICHE team | fd50a40 | 2018-12-07 22:54:05 -0500 | [diff] [blame] | 1 | // 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 | |
| 14 | namespace http2 { |
| 15 | namespace test { |
| 16 | |
| 17 | template <class S> |
| 18 | Http2String 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). |
| 27 | void Randomize(Http2FrameHeader* out, Http2Random* rng); |
| 28 | void Randomize(Http2PriorityFields* out, Http2Random* rng); |
| 29 | void Randomize(Http2RstStreamFields* out, Http2Random* rng); |
| 30 | void Randomize(Http2SettingFields* out, Http2Random* rng); |
| 31 | void Randomize(Http2PushPromiseFields* out, Http2Random* rng); |
| 32 | void Randomize(Http2PingFields* out, Http2Random* rng); |
| 33 | void Randomize(Http2GoAwayFields* out, Http2Random* rng); |
| 34 | void Randomize(Http2WindowUpdateFields* out, Http2Random* rng); |
| 35 | void 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. |
| 39 | void ScrubFlagsOfHeader(Http2FrameHeader* header); |
| 40 | |
| 41 | // Is the frame with this header padded? Only true for known/supported frame |
| 42 | // types. |
| 43 | bool FrameIsPadded(const Http2FrameHeader& header); |
| 44 | |
| 45 | // Does the frame with this header have Http2PriorityFields? |
| 46 | bool 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. |
| 50 | bool 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. |
| 54 | bool FrameCanHaveHpackPayload(const Http2FrameHeader& header); |
| 55 | |
| 56 | } // namespace test |
| 57 | } // namespace http2 |
| 58 | |
| 59 | #endif // QUICHE_HTTP2_HTTP2_STRUCTURES_TEST_UTIL_H_ |