Java tutorial
/* * Copyright (C) 2015 Square, Inc. * * Licensed 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 keywhiz.service.resources; import com.fasterxml.jackson.databind.ObjectMapper; import com.squareup.okhttp.OkHttpClient; import com.squareup.okhttp.Request; import com.squareup.okhttp.Response; import io.dropwizard.jackson.Jackson; import java.time.OffsetDateTime; import keywhiz.IntegrationTestRule; import keywhiz.KeywhizService; import keywhiz.TestClients; import keywhiz.api.SecretDeliveryResponse; import keywhiz.api.model.Secret; import org.junit.Before; import org.junit.ClassRule; import org.junit.Test; import org.junit.rules.RuleChain; import static keywhiz.testing.HttpClients.testUrl; import static org.assertj.core.api.Assertions.assertThat; public class SecretDeliveryResourceIntegrationTest { ObjectMapper mapper = KeywhizService.customizeObjectMapper(Jackson.newObjectMapper()); OkHttpClient client; Secret generalPassword; @ClassRule public static final RuleChain chain = IntegrationTestRule.rule(); @Before public void setUp() throws Exception { client = TestClients.mutualSslClient(); generalPassword = new Secret(0, "General_Password", null, null, "YXNkZGFz", OffsetDateTime.parse("2011-09-29T15:46:00Z"), null, OffsetDateTime.parse("2011-09-29T15:46:00Z"), null, null, "upload", null); } @Test public void returnsSecretWhenAllowed() throws Exception { Request get = new Request.Builder().get().url(testUrl("/secret/General_Password")).build(); Response response = client.newCall(get).execute(); assertThat(response.code()).isEqualTo(200); assertThat(response.body().string()) .isEqualTo(mapper.writeValueAsString(SecretDeliveryResponse.fromSecret(generalPassword))); } @Test public void returnsNotFoundWhenSecretUnspecified() throws Exception { Request get = new Request.Builder().get().url(testUrl("/secret/")).build(); Response response = client.newCall(get).execute(); assertThat(response.code()).isEqualTo(404); } @Test public void returnsNotFoundWhenSecretDoesNotExist() throws Exception { Request get = new Request.Builder().get().url(testUrl("/secret/nonexistent")).build(); Response response = client.newCall(get).execute(); assertThat(response.code()).isEqualTo(404); } @Test public void returnsUnauthorizedWhenDenied() throws Exception { Request get = new Request.Builder().get().url(testUrl("/secret/Hacking_Password")).build(); Response response = client.newCall(get).execute(); assertThat(response.code()).isEqualTo(403); } }