summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2018-10-08 13:49:47 -0700
committerChris Loer <chris.loer@mapbox.com>2018-10-15 13:15:46 -0700
commit6cbf150a3391c87d895222b2b1ddc2046ccc8dad (patch)
treed05c8345440355935fa18691bc571cbb5da4d035
parent2c2241c50645a677ec1d45aa1895021244744869 (diff)
downloadqtlocation-mapboxgl-6cbf150a3391c87d895222b2b1ddc2046ccc8dad.tar.gz
[test] Add unit test for TaggedString::trim()
-rw-r--r--cmake/test-files.txt1
-rw-r--r--test/text/tagged_string.test.cpp27
2 files changed, 28 insertions, 0 deletions
diff --git a/cmake/test-files.txt b/cmake/test-files.txt
index 77a69bb450..a94004aa32 100644
--- a/cmake/test-files.txt
+++ b/cmake/test-files.txt
@@ -115,6 +115,7 @@ test/text/glyph_pbf.test.cpp
test/text/language_tag.test.cpp
test/text/local_glyph_rasterizer.test.cpp
test/text/quads.test.cpp
+test/text/tagged_string.test.cpp
# tile
test/tile/custom_geometry_tile.test.cpp
diff --git a/test/text/tagged_string.test.cpp b/test/text/tagged_string.test.cpp
new file mode 100644
index 0000000000..3c58ccd94b
--- /dev/null
+++ b/test/text/tagged_string.test.cpp
@@ -0,0 +1,27 @@
+
+#include <mbgl/test/util.hpp>
+
+#include <mbgl/text/tagged_string.hpp>
+
+using namespace mbgl;
+
+TEST(TaggedString, Trim) {
+ TaggedString basic(u" \t\ntrim that and not this \n\t", SectionOptions(1.0f, 0));
+ basic.trim();
+ EXPECT_EQ(basic.rawText(), u"trim that and not this");
+
+ TaggedString twoSections;
+ twoSections.addSection(u" \t\ntrim that", 1.5f, 1);
+ twoSections.addSection(u" and not this \n\t", 0.5f, 2);
+
+ twoSections.trim();
+ EXPECT_EQ(twoSections.rawText(), u"trim that and not this");
+
+ TaggedString empty(u"\n\t\v \r \t\n", SectionOptions(1.0f, 0));
+ empty.trim();
+ EXPECT_EQ(empty.rawText(), u"");
+
+ TaggedString noTrim(u"no trim!", SectionOptions(1.0f, 0));
+ noTrim.trim();
+ EXPECT_EQ(noTrim.rawText(), u"no trim!");
+}