Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: net/der/parser_unittest.cc

Issue 1248043002: Add functions for DER parsing a BIT STRING. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address David's comment Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/der/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/der/parser_unittest.cc
diff --git a/net/der/parser_unittest.cc b/net/der/parser_unittest.cc
index 1943d6b86ebeb8fa79e1aa5df8147152e30d1681..ee6b73a6e89c381d5d8575655ce72c7a3783bf53 100644
--- a/net/der/parser_unittest.cc
+++ b/net/der/parser_unittest.cc
@@ -196,6 +196,58 @@ TEST(ParserTest, CannotAdvanceAfterReadOptionalTag) {
ASSERT_FALSE(parser.Advance());
}
+// Reads a valid BIT STRING with 1 unused bit.
+TEST(ParserTest, ReadBitString) {
+ const uint8_t der[] = {0x03, 0x03, 0x01, 0xAA, 0xBE};
+ Parser parser((Input(der)));
+
+ Input bytes;
+ uint8_t unused_bits;
+ ASSERT_TRUE(parser.ReadBitString(&bytes, &unused_bits));
+ EXPECT_FALSE(parser.HasMore());
+
+ EXPECT_EQ(1u, unused_bits);
+ ASSERT_EQ(2u, bytes.Length());
+ EXPECT_EQ(0xAA, bytes.UnsafeData()[0]);
+ EXPECT_EQ(0xBE, bytes.UnsafeData()[1]);
+}
+
+// Tries reading a BIT STRING. This should fail because the tag is not for a
+// BIT STRING.
+TEST(ParserTest, ReadBitStringBadTag) {
+ const uint8_t der[] = {0x05, 0x03, 0x01, 0xAA, 0xBE};
+ Parser parser((Input(der)));
+
+ Input bytes;
+ uint8_t unused_bits;
+ EXPECT_FALSE(parser.ReadBitString(&bytes, &unused_bits));
+}
+
+// Reads a BIT STRING with one unused bit using ReadBitStringNoUnusedBits. This
+// should fail because there are unused bits.
+TEST(ParserTest, ReadBitStringNoUnusedBitsFailure) {
+ const uint8_t der[] = {0x03, 0x03, 0x01, 0xAA, 0xBE};
+ Parser parser((Input(der)));
+
+ Input bytes;
+ EXPECT_FALSE(parser.ReadBitStringNoUnusedBits(&bytes));
+}
+
+// Reads a BIT STRING with no unused bits using ReadBitStringNoUnusedBits. This
+// should succeed.
+TEST(ParserTest, ReadBitStringNoUnusedBits) {
+ const uint8_t der[] = {0x03, 0x03, 0x00, 0xAA, 0xBE};
+ Parser parser((Input(der)));
+
+ Input bytes;
+ ASSERT_TRUE(parser.ReadBitStringNoUnusedBits(&bytes));
+ EXPECT_FALSE(parser.HasMore());
+
+ ASSERT_EQ(2u, bytes.Length());
+ EXPECT_EQ(0xAA, bytes.UnsafeData()[0]);
+ EXPECT_EQ(0xBE, bytes.UnsafeData()[1]);
+}
+
} // namespace test
} // namespace der
} // namespace net
« no previous file with comments | « net/der/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698