/apis/chef/src/test/java/org/jclouds/chef/binders/BindGroupToUpdateRequestJsonPayloadTest.java

http://github.com/jclouds/jclouds · Java · 82 lines · 49 code · 14 blank · 19 comment · 0 complexity · 31808a212ed3d2094c531f3c8715ac7e 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.chef.binders;
  18. import static org.testng.Assert.assertEquals;
  19. import java.io.IOException;
  20. import java.net.URI;
  21. import org.jclouds.chef.ChefApiMetadata;
  22. import org.jclouds.chef.config.ChefParserModule;
  23. import org.jclouds.chef.domain.Group;
  24. import org.jclouds.http.HttpRequest;
  25. import org.jclouds.json.config.GsonModule;
  26. import org.jclouds.rest.annotations.ApiVersion;
  27. import org.jclouds.util.Strings2;
  28. import org.testng.annotations.Test;
  29. import com.google.inject.AbstractModule;
  30. import com.google.inject.Guice;
  31. import com.google.inject.Injector;
  32. /**
  33. * Unit tests for the {@link BindGroupToUpdateRequestJsonPayload} class.
  34. */
  35. @Test(groups = "unit", testName = "BindGroupToUpdateRequestJsonPayloadTest")
  36. public class BindGroupToUpdateRequestJsonPayloadTest {
  37. private Injector injector = Guice.createInjector(new AbstractModule() {
  38. @Override
  39. protected void configure() {
  40. bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
  41. }
  42. }, new ChefParserModule(), new GsonModule());
  43. private BindGroupToUpdateRequestJsonPayload binder = injector.getInstance(BindGroupToUpdateRequestJsonPayload.class);
  44. @Test(expectedExceptions = NullPointerException.class)
  45. public void testInvalidNullInput() {
  46. HttpRequest request = HttpRequest.builder().method("POST").endpoint(URI.create("http://localhost")).build();
  47. binder.bindToRequest(request, null);
  48. }
  49. @Test(expectedExceptions = IllegalArgumentException.class)
  50. public void testInvalidTypeInput() {
  51. HttpRequest request = HttpRequest.builder().method("POST").endpoint(URI.create("http://localhost")).build();
  52. binder.bindToRequest(request, new Object());
  53. }
  54. public void testBindOnlyName() throws IOException {
  55. HttpRequest request = HttpRequest.builder().method("POST").endpoint(URI.create("http://localhost")).build();
  56. HttpRequest newRequest = binder.bindToRequest(request, Group.builder("foo").build());
  57. String payload = Strings2.toStringAndClose(newRequest.getPayload().getInput());
  58. assertEquals(payload, "{\"groupname\":\"foo\",\"actors\":{\"clients\":[],\"groups\":[],\"users\":[]}}");
  59. }
  60. public void testBindNameAndLists() throws IOException {
  61. Group group = Group.builder("foo").client("nacx-validator").group("admins").user("nacx").build();
  62. HttpRequest request = HttpRequest.builder().method("POST").endpoint(URI.create("http://localhost")).build();
  63. HttpRequest newRequest = binder.bindToRequest(request, group);
  64. String payload = Strings2.toStringAndClose(newRequest.getPayload().getInput());
  65. assertEquals(payload,
  66. "{\"groupname\":\"foo\",\"actors\":{\"clients\":[\"nacx-validator\"],\"groups\":[\"admins\"],\"users\":[\"nacx\"]}}");
  67. }
  68. }