Test URL encoding. Check that the values that are put in are the same that come out.
| 98 | // Test URL encoding. Check that the values that are put in are the |
| 99 | // same that come out. |
| 100 | TEST(UrlCodingTest, Basic) { |
| 101 | string input = "ABCDEFGHIJKLMNOPQRSTUWXYZ1234567890~!@#$%^&*()<>?,./:\";'{}|[]\\_+-="; |
| 102 | TestUrl(input, "", false); |
| 103 | TestUrl(input, "", true); |
| 104 | } |
| 105 | |
| 106 | TEST(UrlCodingTest, HiveExceptions) { |
| 107 | TestUrl(" +", " +", true); |
nothing calls this directly
no test coverage detected