blob: 30c5c2134fe58b35791de91d0e4463ce41ba0420 [file] [log] [blame]
QUICHE team82dee2f2019-01-18 12:35:12 -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_SPDY_CORE_SPDY_PROTOCOL_TEST_UTILS_H_
6#define QUICHE_SPDY_CORE_SPDY_PROTOCOL_TEST_UTILS_H_
7
8// These functions support tests that need to compare two concrete SpdyFrameIR
9// instances for equality. They return AssertionResult, so they may be used as
10// follows:
11//
12// SomeSpdyFrameIRSubClass expected_ir(...);
13// std::unique_ptr<SpdyFrameIR> collected_frame;
14// ... some test code that may fill in collected_frame ...
15// ASSERT_TRUE(VerifySpdyFrameIREquals(expected_ir, collected_frame.get()));
16//
17// TODO(jamessynge): Where it makes sense in these functions, it would be nice
18// to make use of the existing gMock matchers here, instead of rolling our own.
19
20#include <typeinfo>
21
danzhbcfea902019-04-17 10:27:48 -070022#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h"
QUICHE teamf3c80c92020-02-12 09:47:55 -080023#include "net/third_party/quiche/src/common/platform/api/quiche_test.h"
QUICHE team82dee2f2019-01-18 12:35:12 -050024#include "net/third_party/quiche/src/spdy/core/spdy_protocol.h"
25#include "net/third_party/quiche/src/spdy/core/spdy_test_utils.h"
QUICHE teamded03512019-03-07 14:45:11 -080026#include "net/third_party/quiche/src/spdy/platform/api/spdy_logging.h"
QUICHE team82dee2f2019-01-18 12:35:12 -050027
28namespace spdy {
29namespace test {
30
31// Verify the header entries in two SpdyFrameWithHeaderBlockIR instances
32// are the same.
33::testing::AssertionResult VerifySpdyFrameWithHeaderBlockIREquals(
34 const SpdyFrameWithHeaderBlockIR& expected,
35 const SpdyFrameWithHeaderBlockIR& actual);
36
37// Verify that the padding in two frames of type T is the same.
38template <class T>
39::testing::AssertionResult VerifySpdyFrameWithPaddingIREquals(const T& expected,
40 const T& actual) {
QUICHE teamded03512019-03-07 14:45:11 -080041 SPDY_VLOG(1) << "VerifySpdyFrameWithPaddingIREquals";
QUICHE team82dee2f2019-01-18 12:35:12 -050042 VERIFY_EQ(expected.padded(), actual.padded());
43 if (expected.padded()) {
44 VERIFY_EQ(expected.padding_payload_len(), actual.padding_payload_len());
45 }
46
47 return ::testing::AssertionSuccess();
48}
49
50// Verify the priority fields in two frames of type T are the same.
51template <class T>
52::testing::AssertionResult VerifySpdyFrameWithPriorityIREquals(
53 const T& expected,
54 const T& actual) {
QUICHE teamded03512019-03-07 14:45:11 -080055 SPDY_VLOG(1) << "VerifySpdyFrameWithPriorityIREquals";
QUICHE team82dee2f2019-01-18 12:35:12 -050056 VERIFY_EQ(expected.parent_stream_id(), actual.parent_stream_id());
57 VERIFY_EQ(expected.weight(), actual.weight());
58 VERIFY_EQ(expected.exclusive(), actual.exclusive());
59 return ::testing::AssertionSuccess();
60}
61
62// Verify that two SpdyAltSvcIR frames are the same.
63::testing::AssertionResult VerifySpdyFrameIREquals(const SpdyAltSvcIR& expected,
64 const SpdyAltSvcIR& actual);
65
66// VerifySpdyFrameIREquals for SpdyContinuationIR frames isn't really needed
67// because we don't really make use of SpdyContinuationIR, instead creating
68// SpdyHeadersIR or SpdyPushPromiseIR with the pre-encoding form of the HPACK
69// block (i.e. we don't yet have a CONTINUATION frame).
70//
71// ::testing::AssertionResult VerifySpdyFrameIREquals(
72// const SpdyContinuationIR& expected,
73// const SpdyContinuationIR& actual) {
74// return ::testing::AssertionFailure()
75// << "VerifySpdyFrameIREquals SpdyContinuationIR NYI";
76// }
77
78// Verify that two SpdyDataIR frames are the same.
79::testing::AssertionResult VerifySpdyFrameIREquals(const SpdyDataIR& expected,
80 const SpdyDataIR& actual);
81
82// Verify that two SpdyGoAwayIR frames are the same.
83::testing::AssertionResult VerifySpdyFrameIREquals(const SpdyGoAwayIR& expected,
84 const SpdyGoAwayIR& actual);
85
86// Verify that two SpdyHeadersIR frames are the same.
87::testing::AssertionResult VerifySpdyFrameIREquals(
88 const SpdyHeadersIR& expected,
89 const SpdyHeadersIR& actual);
90
91// Verify that two SpdyPingIR frames are the same.
92::testing::AssertionResult VerifySpdyFrameIREquals(const SpdyPingIR& expected,
93 const SpdyPingIR& actual);
94
95// Verify that two SpdyPriorityIR frames are the same.
96::testing::AssertionResult VerifySpdyFrameIREquals(
97 const SpdyPriorityIR& expected,
98 const SpdyPriorityIR& actual);
99
100// Verify that two SpdyPushPromiseIR frames are the same.
101::testing::AssertionResult VerifySpdyFrameIREquals(
102 const SpdyPushPromiseIR& expected,
103 const SpdyPushPromiseIR& actual);
104
105// Verify that two SpdyRstStreamIR frames are the same.
106::testing::AssertionResult VerifySpdyFrameIREquals(
107 const SpdyRstStreamIR& expected,
108 const SpdyRstStreamIR& actual);
109
110// Verify that two SpdySettingsIR frames are the same.
111::testing::AssertionResult VerifySpdyFrameIREquals(
112 const SpdySettingsIR& expected,
113 const SpdySettingsIR& actual);
114
115// Verify that two SpdyWindowUpdateIR frames are the same.
116::testing::AssertionResult VerifySpdyFrameIREquals(
117 const SpdyWindowUpdateIR& expected,
118 const SpdyWindowUpdateIR& actual);
119
120// Verify that either expected and actual are both nullptr, or that both are not
121// nullptr, and that actual is of type E, and that it matches expected.
122template <class E>
123::testing::AssertionResult VerifySpdyFrameIREquals(const E* expected,
124 const SpdyFrameIR* actual) {
125 if (expected == nullptr || actual == nullptr) {
QUICHE teamded03512019-03-07 14:45:11 -0800126 SPDY_VLOG(1) << "VerifySpdyFrameIREquals one null";
QUICHE team82dee2f2019-01-18 12:35:12 -0500127 VERIFY_EQ(expected, nullptr);
128 VERIFY_EQ(actual, nullptr);
129 return ::testing::AssertionSuccess();
130 }
QUICHE teamded03512019-03-07 14:45:11 -0800131 SPDY_VLOG(1) << "VerifySpdyFrameIREquals not null";
QUICHE team82dee2f2019-01-18 12:35:12 -0500132 VERIFY_EQ(actual->frame_type(), expected->frame_type());
QUICHE team1605d8b2019-01-18 17:10:34 -0500133 const E* actual2 = static_cast<const E*>(actual);
QUICHE team82dee2f2019-01-18 12:35:12 -0500134 return VerifySpdyFrameIREquals(*expected, *actual2);
135}
136
137// Verify that actual is not nullptr, that it is of type E and that it
138// matches expected.
139template <class E>
140::testing::AssertionResult VerifySpdyFrameIREquals(const E& expected,
141 const SpdyFrameIR* actual) {
QUICHE teamded03512019-03-07 14:45:11 -0800142 SPDY_VLOG(1) << "VerifySpdyFrameIREquals";
QUICHE team82dee2f2019-01-18 12:35:12 -0500143 return VerifySpdyFrameIREquals(&expected, actual);
144}
145
146} // namespace test
147} // namespace spdy
148
149#endif // QUICHE_SPDY_CORE_SPDY_PROTOCOL_TEST_UTILS_H_