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

Unified Diff: net/der/parse_values_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/parse_values.cc ('k') | net/der/parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/der/parse_values_unittest.cc
diff --git a/net/der/parse_values_unittest.cc b/net/der/parse_values_unittest.cc
index ea1b5c4e8cca4e28bd85f533fe54b39f05577e50..6df40cdf17657a73531d3e6bf702a36895999920 100644
--- a/net/der/parse_values_unittest.cc
+++ b/net/der/parse_values_unittest.cc
@@ -195,6 +195,60 @@ TEST(ParseValuesTest, ParseUint64) {
}
}
+// Tests parsing an empty BIT STRING.
+TEST(ParseValuesTest, ParseBitStringEmptyNoUnusedBits) {
+ const uint8_t kData[] = {0x00};
+
+ Input bytes;
+ uint8_t unused_bits;
+ ASSERT_TRUE(ParseBitString(Input(kData), &bytes, &unused_bits));
+
+ EXPECT_EQ(0u, unused_bits);
+ EXPECT_EQ(0u, bytes.Length());
+}
+
+// Tests parsing an empty BIT STRING that incorrectly claims one unused bit.
+TEST(ParseValuesTest, ParseBitStringEmptyOneUnusedBit) {
+ const uint8_t kData[] = {0x01};
+
+ Input bytes;
+ uint8_t unused_bits;
+ EXPECT_FALSE(ParseBitString(Input(kData), &bytes, &unused_bits));
+}
+
+// Tests parsing an empty BIT STRING that is not minmally encoded (the entire
+// last byte is comprised of unused bits).
+TEST(ParseValuesTest, ParseBitStringNonEmptyTooManyUnusedBits) {
+ const uint8_t kData[] = {0x08, 0x00};
+
+ Input bytes;
+ uint8_t unused_bits;
+ EXPECT_FALSE(ParseBitString(Input(kData), &bytes, &unused_bits));
+}
+
+// Tests parsing a BIT STRING of 7 bits each of which are 1.
+TEST(ParseValuesTest, ParseBitStringSevenOneBits) {
+ const uint8_t kData[] = {0x01, 0xFE};
+
+ Input bytes;
+ uint8_t unused_bits;
+ ASSERT_TRUE(ParseBitString(Input(kData), &bytes, &unused_bits));
+
+ EXPECT_EQ(1u, unused_bits);
+ EXPECT_EQ(1u, bytes.Length());
+ EXPECT_EQ(0xFE, bytes.UnsafeData()[0]);
+}
+
+// Tests parsing a BIT STRING of 7 bits each of which are 1. The unused bit
+// however is set to 1, which is an invalid encoding.
+TEST(ParseValuesTest, ParseBitStringSevenOneBitsUnusedBitIsOne) {
+ const uint8_t kData[] = {0x01, 0xFF};
+
+ Input bytes;
+ uint8_t unused_bits;
+ EXPECT_FALSE(ParseBitString(Input(kData), &bytes, &unused_bits));
+}
+
} // namespace test
} // namespace der
} // namespace net
« no previous file with comments | « net/der/parse_values.cc ('k') | net/der/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698