mirror of
https://github.com/google/nomulus.git
synced 2025-07-13 22:45:10 +02:00
Set "Development" environment in RDE upload test
Set SystemProperty.environment to "Development" so we don't try to actually use GCS. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=165019677
This commit is contained in:
parent
5653b2f479
commit
7748ef072d
1 changed files with 7 additions and 1 deletions
|
@ -40,6 +40,7 @@ import static org.mockito.Mockito.verifyNoMoreInteractions;
|
||||||
import static org.mockito.Mockito.when;
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
import com.google.appengine.api.taskqueue.QueueFactory;
|
import com.google.appengine.api.taskqueue.QueueFactory;
|
||||||
|
import com.google.appengine.api.utils.SystemProperty;
|
||||||
import com.google.appengine.tools.cloudstorage.GcsFilename;
|
import com.google.appengine.tools.cloudstorage.GcsFilename;
|
||||||
import com.google.appengine.tools.cloudstorage.GcsService;
|
import com.google.appengine.tools.cloudstorage.GcsService;
|
||||||
import com.google.appengine.tools.cloudstorage.GcsServiceFactory;
|
import com.google.appengine.tools.cloudstorage.GcsServiceFactory;
|
||||||
|
@ -146,7 +147,6 @@ public class RdeUploadActionTest {
|
||||||
private final FakeResponse response = new FakeResponse();
|
private final FakeResponse response = new FakeResponse();
|
||||||
private final EscrowTaskRunner runner = mock(EscrowTaskRunner.class);
|
private final EscrowTaskRunner runner = mock(EscrowTaskRunner.class);
|
||||||
private final FakeClock clock = new FakeClock(DateTime.parse("2010-10-17TZ"));
|
private final FakeClock clock = new FakeClock(DateTime.parse("2010-10-17TZ"));
|
||||||
private final GcsService gcsService = GcsServiceFactory.createGcsService();
|
|
||||||
|
|
||||||
private final RydeTarOutputStreamFactory tarFactory =
|
private final RydeTarOutputStreamFactory tarFactory =
|
||||||
new RydeTarOutputStreamFactory() {
|
new RydeTarOutputStreamFactory() {
|
||||||
|
@ -230,8 +230,14 @@ public class RdeUploadActionTest {
|
||||||
return jschSpy;
|
return jschSpy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private GcsService gcsService;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void before() throws Exception {
|
public void before() throws Exception {
|
||||||
|
// Force "development" mode so we don't try to really connect to GCS.
|
||||||
|
SystemProperty.environment.set(SystemProperty.Environment.Value.Development);
|
||||||
|
gcsService = GcsServiceFactory.createGcsService();
|
||||||
|
|
||||||
createTld("tld");
|
createTld("tld");
|
||||||
PGPPublicKey encryptKey = new FakeKeyringModule().get().getRdeStagingEncryptionKey();
|
PGPPublicKey encryptKey = new FakeKeyringModule().get().getRdeStagingEncryptionKey();
|
||||||
writeGcsFile(gcsService, GHOSTRYDE_FILE,
|
writeGcsFile(gcsService, GHOSTRYDE_FILE,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue