com.thoughtworks.go.agent.service.AgentAutoRegistrationPropertiesTest.java Source code

Java tutorial

Introduction

Here is the source code for com.thoughtworks.go.agent.service.AgentAutoRegistrationPropertiesTest.java

Source

/*
 * Copyright 2015 ThoughtWorks, 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 com.thoughtworks.go.agent.service;

import org.apache.commons.io.FileUtils;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;

import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertThat;

public class AgentAutoRegistrationPropertiesTest {

    @Rule
    public TemporaryFolder folder = new TemporaryFolder();
    private File configFile;

    @Before
    public void setUp() throws IOException {
        configFile = folder.newFile();
    }

    @Test
    public void shouldReturnAgentAutoRegisterPropertiesIfPresent() throws Exception {
        Properties properties = new Properties();

        properties.put(AgentAutoRegistrationProperties.AGENT_AUTO_REGISTER_KEY, "foo");
        properties.put(AgentAutoRegistrationProperties.AGENT_AUTO_REGISTER_RESOURCES, "foo, zoo");
        properties.put(AgentAutoRegistrationProperties.AGENT_AUTO_REGISTER_ENVIRONMENTS, "foo, bar");
        properties.put(AgentAutoRegistrationProperties.AGENT_AUTO_REGISTER_HOSTNAME, "agent01.example.com");
        properties.store(new FileOutputStream(configFile), "");

        AgentAutoRegistrationProperties reader = new AgentAutoRegistrationProperties(configFile);
        assertThat(reader.agentAutoRegisterKey(), is("foo"));
        assertThat(reader.agentAutoRegisterResources(), is("foo, zoo"));
        assertThat(reader.agentAutoRegisterEnvironments(), is("foo, bar"));
        assertThat(reader.agentAutoRegisterHostname(), is("agent01.example.com"));
    }

    @Test
    public void shouldReturnEmptyStringIfPropertiesNotPresent() {
        AgentAutoRegistrationProperties reader = new AgentAutoRegistrationProperties(configFile);
        assertThat(reader.agentAutoRegisterKey().isEmpty(), is(true));
        assertThat(reader.agentAutoRegisterResources().isEmpty(), is(true));
        assertThat(reader.agentAutoRegisterEnvironments().isEmpty(), is(true));
        assertThat(reader.agentAutoRegisterHostname().isEmpty(), is(true));
    }

    @Test
    public void shouldScrubTheAutoRegistrationProperties() throws Exception {
        String originalContents = "" + "#\n" + "# file autogenerated by chef, any changes will be lost\n" + "#\n"
                + "# the registration key\n" + "agent.auto.register.key = some secret key\n" + "\n"
                + "# the resources on this agent\n" + "agent.auto.register.resources = some,resources\n" + "\n"
                + "# The hostname of this agent\n" + "agent.auto.register.hostname = agent42.example.com\n" + "\n"
                + "# The environments this agent belongs to\n"
                + "agent.auto.register.environments = production,blue\n" + "\n";
        FileUtils.write(configFile, originalContents);

        AgentAutoRegistrationProperties properties = new AgentAutoRegistrationProperties(configFile);
        properties.scrubRegistrationProperties();

        String newContents = "" + "#\n" + "# file autogenerated by chef, any changes will be lost\n" + "#\n"
                + "# the registration key\n"
                + "# The autoregister key has been intentionally removed by Go as a security measure.\n"
                + "# agent.auto.register.key = some secret key\n" + "\n" + "# the resources on this agent\n"
                + "# This property has been removed by Go after attempting to auto-register with the Go server.\n"
                + "# agent.auto.register.resources = some,resources\n" + "\n" + "# The hostname of this agent\n"
                + "# This property has been removed by Go after attempting to auto-register with the Go server.\n"
                + "# agent.auto.register.hostname = agent42.example.com\n" + "\n"
                + "# The environments this agent belongs to\n"
                + "# This property has been removed by Go after attempting to auto-register with the Go server.\n"
                + "# agent.auto.register.environments = production,blue\n" + "\n";
        assertThat(FileUtils.readFileToString(configFile), is(newContents));
    }
}