Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for LocalGcdHelper #284

Merged
merged 2 commits into from
Oct 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 boolean 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().startsWith("Shutting down local server");
}

public void stop() throws IOException, InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* 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));
long timeoutMillis = 30000;
long startTime = System.currentTimeMillis();
boolean datastoreActive = LocalGcdHelper.isActive(PROJECT_ID, PORT);
while (datastoreActive && System.currentTimeMillis() - startTime < timeoutMillis) {
datastoreActive = LocalGcdHelper.isActive(PROJECT_ID, PORT);
}
assertFalse(datastoreActive);
assertFalse(LocalGcdHelper.sendQuitRequest(PORT));
gcdHelper.stop();
}

@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));
}
}