Skip to content

Commit

Permalink
Add KMS test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerjou Cheng committed Feb 3, 2017
1 parent f8a5663 commit bfe4aca
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions kms/src/test/java/com/example/QuickstartIT.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*
* Copyright (c) 2017 Google 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.example;

import static com.google.common.truth.Truth.assertThat;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;

/**
* Integration (system) tests for {@link Quickstart}.
*/
@RunWith(JUnit4.class)
@SuppressWarnings("checkstyle:abbreviationaswordinname")
public class QuickstartIT {

private ByteArrayOutputStream bout;
private PrintStream out;

@Before
public void setUp() throws Exception {
bout = new ByteArrayOutputStream();
out = new PrintStream(bout);
System.setOut(out);
}

@After
public void tearDown() {
System.setOut(null);
}

@Test
public void main_printsKeyrings() throws Exception {
Quickstart.main("foo");
String stdout = bout.toString();

assertThat(stdout).contains("jerjou");
}
}

0 comments on commit bfe4aca

Please sign in to comment.