MCPcopy Create free account
hub / github.com/apache/impala / TEST

Function TEST

be/src/kudu/util/url-coding-test.cc:78–82  ·  view source on GitHub ↗

Test URL encoding. Check that the values that are put in are the same that come out.

Source from the content-addressed store, hash-verified

76// Test URL encoding. Check that the values that are put in are the
77// same that come out.
78TEST(UrlCodingTest, Basic) {
79 string input = "ABCDEFGHIJKLMNOPQRSTUWXYZ1234567890~!@#$%^&*()<>?,./:\";'{}|[]\\_+-=";
80 TestUrl(input, "", false);
81 TestUrl(input, "", true);
82}
83
84TEST(UrlCodingTest, HiveExceptions) {
85 TestUrl(" +", " +", true);

Callers

nothing calls this directly

Calls 4

TestUrlFunction · 0.70
TestBase64Function · 0.70
EscapeForHtmlFunction · 0.70
strMethod · 0.45

Tested by

no test coverage detected