diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-04-13 13:41:24 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-13 22:06:11 +0000 |
commit | 3cfff70244e31f48068c32cbc4c070468f4c3e85 (patch) | |
tree | 331dc0766a512ac5854c4deba76a6174942cdc02 /core/fxcrt/cfx_bytestring_unittest.cpp | |
parent | 7b7c6532310eeeabadae7b34fdf86f4a890951e8 (diff) | |
download | pdfium-3cfff70244e31f48068c32cbc4c070468f4c3e85.tar.xz |
Add ability to make StringCs from std::vector<>s.
Pre-cursor to using more std::vector<uint8_t> as byte buffers.
The widestring test case is more complicated, where we're not sure
of having any particular uint*_t type to match wchar_t.
Change-Id: Ic27980f16cdbc61fac7c11f39a85eea58d19bacb
Reviewed-on: https://pdfium-review.googlesource.com/4153
Reviewed-by: dsinclair <dsinclair@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/cfx_bytestring_unittest.cpp')
-rw-r--r-- | core/fxcrt/cfx_bytestring_unittest.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/fxcrt/cfx_bytestring_unittest.cpp b/core/fxcrt/cfx_bytestring_unittest.cpp index 3b679a086c..9cfc773fad 100644 --- a/core/fxcrt/cfx_bytestring_unittest.cpp +++ b/core/fxcrt/cfx_bytestring_unittest.cpp @@ -4,6 +4,8 @@ #include "core/fxcrt/cfx_bytestring.h" +#include <vector> + #include "testing/fx_string_testhelpers.h" #include "testing/gtest/include/gtest/gtest.h" @@ -773,6 +775,17 @@ TEST(fxcrt, ByteStringCFromChar) { EXPECT_NE(longer_string, lower_a_string_from_char); } +TEST(fxcrt, ByteStringCFromVector) { + std::vector<uint8_t> null_vec; + CFX_ByteStringC null_string(null_vec); + EXPECT_EQ(0, null_string.GetLength()); + + std::vector<uint8_t> lower_a_vec(10, static_cast<uint8_t>('a')); + CFX_ByteStringC lower_a_string(lower_a_vec); + EXPECT_EQ(10, lower_a_string.GetLength()); + EXPECT_EQ("aaaaaaaaaa", lower_a_string); +} + TEST(fxcrt, ByteStringCGetID) { CFX_ByteStringC null_string; EXPECT_EQ(0u, null_string.GetID()); |