keywhiz.service.resources.AutomationSecretAccessResourceIntegrationTest.java Source code

Java tutorial

Introduction

Here is the source code for keywhiz.service.resources.AutomationSecretAccessResourceIntegrationTest.java

Source

/*
 * 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.squareup.okhttp.MediaType;
import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.RequestBody;
import com.squareup.okhttp.Response;
import keywhiz.IntegrationTestRule;
import keywhiz.TestClients;
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 AutomationSecretAccessResourceIntegrationTest {
    OkHttpClient mutualSslClient;

    @ClassRule
    public static final RuleChain chain = IntegrationTestRule.rule();

    @Before
    public void setUp() {
        mutualSslClient = TestClients.mutualSslClient();
    }

    @Test
    public void allowAccess() throws Exception {
        //Allow "Web" to access "Hacking_Password"
        Request put = new Request.Builder().put(RequestBody.create(MediaType.parse("text/plain"), ""))
                .url(testUrl("/automation/secrets/738/groups/918")).build();

        Response response = mutualSslClient.newCall(put).execute();
        assertThat(response.code()).isEqualTo(200);
    }

    @Test
    public void revokeAccess() throws Exception {
        //Revoke "Database_password" from "Web"
        Request delete = new Request.Builder().delete().url(testUrl("/automation/secrets/739/groups/918")).build();

        Response response = mutualSslClient.newCall(delete).execute();
        assertThat(response.code()).isEqualTo(200);
    }
}