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