/apis/openstack-nova/src/test/java/org/jclouds/openstack/nova/v2_0/parse/ParseNOVNCConsoleTest.java

http://github.com/jclouds/jclouds · Java · 69 lines · 40 code · 10 blank · 19 comment · 0 complexity · 9a282ffe0e4315e0d0cc4bff5d1b02f3 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.openstack.nova.v2_0.parse;
  18. import java.net.URI;
  19. import javax.ws.rs.Consumes;
  20. import javax.ws.rs.core.MediaType;
  21. import org.jclouds.json.BaseItemParserTest;
  22. import org.jclouds.json.config.GsonModule;
  23. import org.jclouds.openstack.nova.v2_0.config.NovaParserModule;
  24. import org.jclouds.openstack.nova.v2_0.domain.Console;
  25. import org.jclouds.rest.annotations.SelectJson;
  26. import org.testng.annotations.Test;
  27. import com.google.common.base.Throwables;
  28. import com.google.inject.Guice;
  29. import com.google.inject.Injector;
  30. /**
  31. * Tests parsing of vnc console response.
  32. */
  33. @Test(groups = "unit", testName = "ParseNOVNCConsoleTest")
  34. public class ParseNOVNCConsoleTest extends BaseItemParserTest<Console> {
  35. @Override
  36. public String resource() {
  37. return "/novnc_console.json";
  38. }
  39. @Override
  40. @SelectJson("console")
  41. @Consumes(MediaType.APPLICATION_JSON)
  42. public Console expected() {
  43. Console console = null;
  44. try {
  45. console = Console
  46. .builder()
  47. .url(new URI("http://example.com:6080/vnc_auto.html?token=f9906a48-b71e-4f18"
  48. + "-baca-c987da3ebdb3&title=dafa(75ecef58-3b8e-4659-ab3b-5501454188e9)"))
  49. .type(Console.Type.NOVNC)
  50. .build();
  51. } catch (Exception e) {
  52. Throwables.propagate(e);
  53. }
  54. return console;
  55. }
  56. protected Injector injector() {
  57. return Guice.createInjector(new NovaParserModule(), new GsonModule());
  58. }
  59. }