summaryrefslogtreecommitdiff
path: root/chromium/net/http/alternative_service_unittest.cc
blob: 95ddd97d526d9ec0d43b5444cae40ad2fcd47892 (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
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/http/alternative_service.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace net {
namespace {

TEST(AlternativeServicesTest, IsProtocolEnabledHttp11) {
  EXPECT_TRUE(IsProtocolEnabled(kProtoHTTP11, /*is_http2_enabled=*/false,
                                /*is_quic_enabled=*/false));
  EXPECT_TRUE(IsProtocolEnabled(kProtoHTTP11, /*is_http2_enabled=*/false,
                                /*is_quic_enabled=*/true));
  EXPECT_TRUE(IsProtocolEnabled(kProtoHTTP11, /*is_http2_enabled=*/true,
                                /*is_quic_enabled=*/false));
  EXPECT_TRUE(IsProtocolEnabled(kProtoHTTP11, /*is_http2_enabled=*/true,
                                /*is_quic_enabled=*/true));
}

TEST(AlternativeServicesTest, IsProtocolEnabledHttp2) {
  EXPECT_FALSE(IsProtocolEnabled(kProtoHTTP2, /*is_http2_enabled=*/false,
                                 /*is_quic_enabled=*/false));
  EXPECT_FALSE(IsProtocolEnabled(kProtoHTTP2, /*is_http2_enabled=*/false,
                                 /*is_quic_enabled=*/true));
  EXPECT_TRUE(IsProtocolEnabled(kProtoHTTP2, /*is_http2_enabled=*/true,
                                /*is_quic_enabled=*/false));
  EXPECT_TRUE(IsProtocolEnabled(kProtoHTTP2, /*is_http2_enabled=*/true,
                                /*is_quic_enabled=*/true));
}

TEST(AlternativeServicesTest, IsProtocolEnabledQuic) {
  EXPECT_FALSE(IsProtocolEnabled(kProtoQUIC, /*is_http2_enabled=*/false,
                                 /*is_quic_enabled=*/false));
  EXPECT_TRUE(IsProtocolEnabled(kProtoQUIC, /*is_http2_enabled=*/false,
                                /*is_quic_enabled=*/true));
  EXPECT_FALSE(IsProtocolEnabled(kProtoQUIC, /*is_http2_enabled=*/true,
                                 /*is_quic_enabled=*/false));
  EXPECT_TRUE(IsProtocolEnabled(kProtoQUIC, /*is_http2_enabled=*/true,
                                /*is_quic_enabled=*/true));
}

}  // namespace
}  // namespace net