File: qr_code_generator_unittest.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (188 lines) | stat: -rw-r--r-- 6,213 bytes parent folder | download | duplicates (9)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "components/qr_code_generator/qr_code_generator.h"

#include <limits>
#include <optional>

#include "base/containers/span.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace qr_code_generator {

TEST(QRCodeGeneratorTest, Generate) {
  // Without a QR decoder implementation, there's a limit to how much we can
  // test the QR encoder. Therefore this test just runs a generation to ensure
  // that no DCHECKs are hit and that the output has the correct structure. When
  // run under ASan, this will also check that every byte of the output has been
  // written to.

  constexpr size_t kMaxInputLen = 210;
  uint8_t input[kMaxInputLen];
  std::optional<int> smallest_size;
  std::optional<int> largest_size;

  for (const bool use_alphanum : {false, true}) {
    SCOPED_TRACE(use_alphanum);
    // 'A' is in the alphanumeric set, but 'a' is not.
    memset(input, use_alphanum ? 'A' : 'a', sizeof(input));

    for (size_t input_len = 30; input_len < kMaxInputLen; input_len += 10) {
      SCOPED_TRACE(input_len);

      base::expected<GeneratedCode, Error> qr_code =
          GenerateCode(base::span<const uint8_t>(input, input_len));
      ASSERT_TRUE(qr_code.has_value());
      auto& qr_data = qr_code->data;

      if (!smallest_size || qr_code->qr_size < *smallest_size) {
        smallest_size = qr_code->qr_size;
      }
      if (!largest_size || qr_code->qr_size > *largest_size) {
        largest_size = qr_code->qr_size;
      }

      int index = 0;
      for (int y = 0; y < qr_code->qr_size; y++) {
        for (int x = 0; x < qr_code->qr_size; x++) {
          ASSERT_EQ(0, qr_data[index++] & 0b11111100);
        }
      }
    }
  }

  // The generator should generate a variety of QR sizes.
  ASSERT_TRUE(smallest_size);
  ASSERT_TRUE(largest_size);
  ASSERT_LT(*smallest_size, *largest_size);
}

TEST(QRCodeGeneratorTest, ManySizes) {
  // Test multiple input sizes.  This test was originally designed to test for
  // memory safety problems caused by off-by-one bugs in the old C++
  // implementation. We are now shipping a memory-safe Rust implementation so we
  // are now testing only sizes up to 90 - this helps to avoid flaky test
  // timeouts.
  std::string input = "";
  std::map<int, size_t> max_input_length_for_qr_size;

  for (;;) {
    input.push_back('!');
    if (input.size() > 90) {
      break;
    }

    base::expected<GeneratedCode, Error> code =
        GenerateCode(base::as_byte_span(input));
    ASSERT_TRUE(code.has_value());
    max_input_length_for_qr_size[code->qr_size] = input.size();
  }

  // Capacities taken from https://www.qrcode.com/en/about/version.html
  //
  // Rust supports all QR versions from 1 to 40 and defaults to M error
  // correction.
  //
  // Other versions skipped, because otherwise the test may timeout.
  EXPECT_EQ(max_input_length_for_qr_size[21], 14u);  // 1-M
  EXPECT_EQ(max_input_length_for_qr_size[25], 26u);  // 2-M
  EXPECT_EQ(max_input_length_for_qr_size[29], 42u);  // 3-M
  EXPECT_EQ(max_input_length_for_qr_size[33], 62u);  // 4-M
  EXPECT_EQ(max_input_length_for_qr_size[37], 84u);  // 5-M
}

// Test helper that returns `GeneratedCode::qr_size` or -1 if there was a
// failure.
int GenerateAndGetQrCodeSize(size_t input_size) {
  std::string input(input_size, '!');

  base::expected<GeneratedCode, Error> code =
      GenerateCode(base::as_byte_span(input));
  return code.has_value() ? code->qr_size : -1;
}

TEST(QRCodeGeneratorTest, InputSize106) {
  EXPECT_EQ(41, GenerateAndGetQrCodeSize(106u));  // 6-M
}

TEST(QRCodeGeneratorTest, InputSize122) {
  EXPECT_EQ(45, GenerateAndGetQrCodeSize(122u));  // 7-M
}

TEST(QRCodeGeneratorTest, InputSize180) {
  EXPECT_EQ(53, GenerateAndGetQrCodeSize(180u));  // 9-M
}

TEST(QRCodeGeneratorTest, InputSize287) {
  EXPECT_EQ(65, GenerateAndGetQrCodeSize(287u));  // 12-M
}

TEST(QRCodeGeneratorTest, InputSize666) {
  EXPECT_EQ(97, GenerateAndGetQrCodeSize(666u));  // 20-M
}

TEST(QRCodeGeneratorTest, HugeInput) {
  // The numbers below have been taken from
  // https://www.qrcode.com/en/about/version.html, for version = 40,
  // ECC level = M.
  const size_t kMaxInputSizeForNumericInputVersion40 = 5596;
  const size_t kMaxInputSizeForBinaryInputVersion40 = 2331;

  std::vector<uint8_t> huge_numeric_input(kMaxInputSizeForNumericInputVersion40,
                                          '0');
  std::vector<uint8_t> huge_binary_input(kMaxInputSizeForBinaryInputVersion40,
                                         '\0');


  // The Rust implementation can generate QR codes up to version 40.
  ASSERT_TRUE(GenerateCode(huge_numeric_input).has_value());
  ASSERT_TRUE(GenerateCode(huge_binary_input).has_value());

  // Adding another character means that the inputs will no longer fit into QR
  // code version 40 (as of year 2023 there are no further versions defined by
  // the spec).
  {
    huge_numeric_input.push_back('0');
    auto failure = GenerateCode(huge_numeric_input);
    ASSERT_FALSE(failure.has_value());
    EXPECT_EQ(failure.error(), Error::kInputTooLong);
  }
  {
    huge_binary_input.push_back('\0');
    auto failure = GenerateCode(huge_binary_input);
    ASSERT_FALSE(failure.has_value());
    EXPECT_EQ(failure.error(), Error::kInputTooLong);
  }
}

TEST(QRCodeGeneratorTest, InvalidMinVersion) {
  std::vector<uint8_t> input(123);  // Arbitrary valid input.

  {
    auto failure = GenerateCode(input, std::make_optional(41));
    ASSERT_FALSE(failure.has_value());
    EXPECT_EQ(failure.error(), Error::kUnknownError);
  }

  {
    auto failure = GenerateCode(
        input, std::make_optional(std::numeric_limits<int>::max()));
    ASSERT_FALSE(failure.has_value());
    EXPECT_EQ(failure.error(), Error::kUnknownError);
  }

  {
    auto failure = GenerateCode(input, std::make_optional(-1));
    ASSERT_FALSE(failure.has_value());
    EXPECT_EQ(failure.error(), Error::kUnknownError);
  }
}

}  // namespace qr_code_generator