blob: 9fc58b3140b636c4dd1cc184a2f6b5f057e425c6 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.server.test;
import static javax.servlet.http.HttpServletResponse.*;
import static org.apache.juneau.server.test.TestUtils.*;
import static org.junit.Assert.*;
import java.io.*;
import org.apache.juneau.client.*;
import org.apache.juneau.json.*;
import org.junit.*;
public class GroupsTest {
private static String URL = "/testGroups";
private static boolean debug = false;
//====================================================================================================
// Serializer defined on class.
//====================================================================================================
@Test
public void testSerializerDefinedOnClass() throws Exception {
RestClient client = new TestRestClient(JsonSerializer.DEFAULT, JsonParser.DEFAULT);
String url = URL + "/testSerializerDefinedOnClass";
String r;
try {
client.setContentType("text/p1");
r = client.doGet(url+"?noTrace=true").getResponseAsString();
fail("Exception expected");
} catch (RestCallException e) {
checkErrorResponse(debug, e, SC_NOT_ACCEPTABLE,
"Unsupported media-type in request header 'Accept': 'application/json'",
"Supported media-types: [text/s1, text/s2]"
);
}
client.setAccept("text/s1").setContentType("");
r = client.doGet(url).getResponseAsString();
assertEquals("text/s,GET", r);
client.setAccept("text/s2").setContentType("");
r = client.doGet(url).getResponseAsString();
assertEquals("text/s,GET", r);
try {
client.setAccept("text/s3").setContentType("");
r = client.doGet(url+"?noTrace=true").getResponseAsString();
assertEquals("text/s,GET", r);
} catch (RestCallException e) {
checkErrorResponse(debug, e, SC_NOT_ACCEPTABLE,
"Unsupported media-type in request header 'Accept': 'text/s3'",
"Supported media-types: [text/s1, text/s2]"
);
}
try {
client.setAccept("text/json").setContentType("text/p1");
r = client.doPut(url+"?noTrace=true", new StringReader("foo")).getResponseAsString();
fail("Exception expected");
} catch (RestCallException e) {
checkErrorResponse(debug, e, SC_NOT_ACCEPTABLE,
"Unsupported media-type in request header 'Accept': 'text/json'",
"Supported media-types: [text/s1, text/s2]"
);
}
try {
client.setAccept("text/s1").setContentType("text/json");
r = client.doPut(url+"?noTrace=true", new StringReader("foo")).getResponseAsString();
fail("Exception expected");
} catch (RestCallException e) {
checkErrorResponse(debug, e, SC_UNSUPPORTED_MEDIA_TYPE,
"Unsupported media-type in request header 'Content-Type': 'text/json'",
"Supported media-types: [text/p1, text/p2]"
);
}
client.setContentType("text/p1").setAccept("text/s1");
r = client.doPut(url, new StringReader("foo")).getResponseAsString();
assertEquals("text/s,foo", r);
client.setContentType("text/p2").setAccept("text/s2");
r = client.doPut(url, new StringReader("foo")).getResponseAsString();
assertEquals("text/s,foo", r);
try {
client.setContentType("text/p1").setAccept("text/s3");
r = client.doPut(url+"?noTrace=true", new StringReader("foo")).getResponseAsString();
} catch (RestCallException e) {
checkErrorResponse(debug, e, SC_NOT_ACCEPTABLE,
"Unsupported media-type in request header 'Accept': 'text/s3'",
"Supported media-types: [text/s1, text/s2]"
);
}
try {
client.setContentType("text/p3").setAccept("text/s1");
r = client.doPut(url+"?noTrace=true", new StringReader("foo")).getResponseAsString();
} catch (RestCallException e) {
checkErrorResponse(debug, e, SC_UNSUPPORTED_MEDIA_TYPE,
"Unsupported media-type in request header 'Content-Type': 'text/p3'",
"Supported media-types: [text/p1, text/p2]"
);
}
client.closeQuietly();
}
}