Skip to content

Commit

Permalink
Add unit tests for public methods in LocalGcdHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kannan committed Oct 22, 2015
1 parent 0dd3d97 commit 9b3e689
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,8 @@ private static void extractFile(ZipInputStream zipIn, File filePath) throws IOEx
}
}

public static void sendQuitRequest(int port) {
public static String sendQuitRequest(int port) {
StringBuilder result = new StringBuilder();
try {
URL url = new URL("http", "localhost", port, "/_ah/admin/quit");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
Expand All @@ -535,12 +536,14 @@ public static void sendQuitRequest(int port) {
out.write("".getBytes());
out.flush();
InputStream in = con.getInputStream();
while (in.read() != -1) {
// consume input
int currByte = 0;
while ((currByte = in.read()) != -1) {
result.append(((char) currByte));
}
} catch (IOException ignore) {
// ignore
}
return result.toString();
}

public void stop() throws IOException, InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* 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.google.gcloud.datastore;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import com.google.gcloud.datastore.testing.LocalGcdHelper;

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

import java.io.IOException;
import java.net.ServerSocket;

@RunWith(JUnit4.class)
public class LocalGcdHelperTest {

private static final String PROJECT_ID = LocalGcdHelper.DEFAULT_PROJECT_ID;
private static final int PORT = LocalGcdHelper.findAvailablePort(LocalGcdHelper.DEFAULT_PORT);

@Test
public void testFindAvailablePort() {
int chosenPort = LocalGcdHelper.findAvailablePort(LocalGcdHelper.DEFAULT_PORT);
try (ServerSocket tempSocket = new ServerSocket(chosenPort)) {
// success
} catch (IOException e) {
if (chosenPort != LocalGcdHelper.DEFAULT_PORT) {
fail("Chosen port not free, even though LocalGcdHelper claimed it was.");
}
}
}

@Test
public void testSendQuitRequest() throws IOException, InterruptedException {
LocalGcdHelper gcdHelper = LocalGcdHelper.start(PROJECT_ID, PORT);
assertTrue(LocalGcdHelper.sendQuitRequest(PORT).startsWith("Shutting down local server"));
gcdHelper.stop();
assertTrue(LocalGcdHelper.sendQuitRequest(PORT).isEmpty()); // shouldn't error
}

@Test
public void testStartStop() throws IOException, InterruptedException {
LocalGcdHelper gcdHelper = LocalGcdHelper.start(PROJECT_ID, PORT);
assertFalse(LocalGcdHelper.isActive("wrong-project-id", PORT));
assertTrue(LocalGcdHelper.isActive(PROJECT_ID, PORT));
gcdHelper.stop();
assertFalse(LocalGcdHelper.isActive(PROJECT_ID, PORT));
}
}

0 comments on commit 9b3e689

Please sign in to comment.