@Test
public void testClientSpecialChar() throws Exception {
Filter f = new Filter("aaaa", FilterFlag.TDHS_EQ,
"~!@#$%^&*()_+-={}[]:\\\";'<>?,./");
TDHSResponse r = client.get("~!@#$%^&*()_+-={}[]:\\\";'<>?,./",
"~!@#$%^&*()_+-={}[]:\\\";'<>?,./",
"~!@#$%^&*()_+-={}[]:\\\";'<>?,./",
new String[] { "~!@#$%^&*()_+-={}[]:\\\";'<>?,./" },
new String[][] { { "~!@#$%^&*()_+-={}[]:\\\";'<>?,./" } },
FindFlag.TDHS_EQ, 0, 100, new Filter[] { f });
Assert.assertEquals(ClientStatus.NOT_FOUND, r.getStatus());
}