OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/numerics/safe_math.h" | 6 #include "base/numerics/safe_math.h" |
7 #include "net/der/input.h" | 7 #include "net/der/input.h" |
8 #include "net/der/parse_values.h" | 8 #include "net/der/parse_values.h" |
9 #include "net/der/parser.h" | 9 #include "net/der/parser.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 const uint8_t der[] = {0x02, 0x01, 0x01}; | 189 const uint8_t der[] = {0x02, 0x01, 0x01}; |
190 Parser parser((Input(der))); | 190 Parser parser((Input(der))); |
191 | 191 |
192 Input value; | 192 Input value; |
193 bool present; | 193 bool present; |
194 ASSERT_TRUE(parser.ReadOptionalTag(0x04, &value, &present)); | 194 ASSERT_TRUE(parser.ReadOptionalTag(0x04, &value, &present)); |
195 ASSERT_FALSE(present); | 195 ASSERT_FALSE(present); |
196 ASSERT_FALSE(parser.Advance()); | 196 ASSERT_FALSE(parser.Advance()); |
197 } | 197 } |
198 | 198 |
| 199 // Reads a valid BIT STRING with 1 unused bit. |
| 200 TEST(ParserTest, ReadBitString) { |
| 201 const uint8_t der[] = {0x03, 0x03, 0x01, 0xAA, 0xBE}; |
| 202 Parser parser((Input(der))); |
| 203 |
| 204 Input bytes; |
| 205 uint8_t unused_bits; |
| 206 ASSERT_TRUE(parser.ReadBitString(&bytes, &unused_bits)); |
| 207 EXPECT_FALSE(parser.HasMore()); |
| 208 |
| 209 EXPECT_EQ(1u, unused_bits); |
| 210 ASSERT_EQ(2u, bytes.Length()); |
| 211 EXPECT_EQ(0xAA, bytes.UnsafeData()[0]); |
| 212 EXPECT_EQ(0xBE, bytes.UnsafeData()[1]); |
| 213 } |
| 214 |
| 215 // Tries reading a BIT STRING. This should fail because the tag is not for a |
| 216 // BIT STRING. |
| 217 TEST(ParserTest, ReadBitStringBadTag) { |
| 218 const uint8_t der[] = {0x05, 0x03, 0x01, 0xAA, 0xBE}; |
| 219 Parser parser((Input(der))); |
| 220 |
| 221 Input bytes; |
| 222 uint8_t unused_bits; |
| 223 EXPECT_FALSE(parser.ReadBitString(&bytes, &unused_bits)); |
| 224 } |
| 225 |
| 226 // Reads a BIT STRING with one unused bit using ReadBitStringNoUnusedBits. This |
| 227 // should fail because there are unused bits. |
| 228 TEST(ParserTest, ReadBitStringNoUnusedBitsFailure) { |
| 229 const uint8_t der[] = {0x03, 0x03, 0x01, 0xAA, 0xBE}; |
| 230 Parser parser((Input(der))); |
| 231 |
| 232 Input bytes; |
| 233 EXPECT_FALSE(parser.ReadBitStringNoUnusedBits(&bytes)); |
| 234 } |
| 235 |
| 236 // Reads a BIT STRING with no unused bits using ReadBitStringNoUnusedBits. This |
| 237 // should succeed. |
| 238 TEST(ParserTest, ReadBitStringNoUnusedBits) { |
| 239 const uint8_t der[] = {0x03, 0x03, 0x00, 0xAA, 0xBE}; |
| 240 Parser parser((Input(der))); |
| 241 |
| 242 Input bytes; |
| 243 ASSERT_TRUE(parser.ReadBitStringNoUnusedBits(&bytes)); |
| 244 EXPECT_FALSE(parser.HasMore()); |
| 245 |
| 246 ASSERT_EQ(2u, bytes.Length()); |
| 247 EXPECT_EQ(0xAA, bytes.UnsafeData()[0]); |
| 248 EXPECT_EQ(0xBE, bytes.UnsafeData()[1]); |
| 249 } |
| 250 |
199 } // namespace test | 251 } // namespace test |
200 } // namespace der | 252 } // namespace der |
201 } // namespace net | 253 } // namespace net |
OLD | NEW |