/providers/gogrid/src/test/java/org/jclouds/gogrid/handlers/GoGridErrorHandlerTest.java

http://github.com/jclouds/jclouds · Java · 77 lines · 41 code · 14 blank · 22 comment · 0 complexity · 9105e9354a039c3dc34c639ac9c40dad MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.gogrid.handlers;
  18. import static org.testng.Assert.assertNotNull;
  19. import static org.testng.Assert.assertTrue;
  20. import java.io.ByteArrayInputStream;
  21. import java.io.IOException;
  22. import java.io.InputStream;
  23. import org.jclouds.http.HttpCommand;
  24. import org.jclouds.http.HttpRequest;
  25. import org.jclouds.http.HttpResponse;
  26. import org.jclouds.json.config.GsonModule;
  27. import org.testng.TestException;
  28. import org.testng.annotations.Test;
  29. import com.google.inject.Guice;
  30. /**
  31. * Tests that the GoGridErrorHandler is correctly handling the exceptions.
  32. */
  33. //NOTE:without testName, this will not call @Before* and fail w/NPE during surefire
  34. @Test(groups = "unit", testName = "GoGridErrorHandlerTest")
  35. public class GoGridErrorHandlerTest {
  36. @Test
  37. public void testHandler() {
  38. InputStream is = getClass().getResourceAsStream("/test_error_handler.json");
  39. GoGridErrorHandler handler = Guice.createInjector(new GsonModule()).getInstance(GoGridErrorHandler.class);
  40. HttpCommand command = createHttpCommand();
  41. handler.handleError(command, HttpResponse.builder().statusCode(200).message("ok").payload(is).build());
  42. Exception createdException = command.getException();
  43. assertNotNull(createdException, "There should've been an exception generated");
  44. String message = createdException.getMessage();
  45. assertTrue(message.contains("No object found that matches your input criteria."),
  46. "Didn't find the expected error cause in the exception message");
  47. assertTrue(message.contains("IllegalArgumentException"),
  48. "Didn't find the expected error code in the exception message");
  49. // make sure the InputStream is closed
  50. try {
  51. is.available();
  52. throw new TestException("Stream wasn't closed by the GoGridErrorHandler when it should've");
  53. } catch (IOException e) {
  54. // this is the excepted output
  55. }
  56. }
  57. HttpCommand createHttpCommand() {
  58. return new HttpCommand(HttpRequest.builder().method("GET").endpoint("http://localhost").build());
  59. }
  60. InputStream createInputStreamFromString(String s) {
  61. return new ByteArrayInputStream(s.getBytes());
  62. }
  63. }