blob: 1b3d94c6dc29f0ef7b082c7cac200f8fc71061a3 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.ignite.spi.discovery.tcp.ipfinder.gce;
import java.lang.reflect.Method;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.util.Collection;
import org.apache.ignite.internal.util.typedef.internal.U;
import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinderAbstractSelfTest;
import org.apache.ignite.testsuites.IgniteGCETestSuite;
/**
* Google Cloud Storage based IP finder tests.
*/
public class TcpDiscoveryGoogleStorageIpFinderSelfTest
extends TcpDiscoveryIpFinderAbstractSelfTest<TcpDiscoveryGoogleStorageIpFinder> {
/** Bucket name. */
private static String bucketName;
/**
* Constructor.
*
* @throws Exception If any error occurs.
*/
public TcpDiscoveryGoogleStorageIpFinderSelfTest() throws Exception {
// No-op.
}
/** {@inheritDoc} */
@Override protected void beforeTestsStarted() throws Exception {
bucketName = "ip-finder-test-bucket-" + InetAddress.getLocalHost().getAddress()[3];
super.beforeTestsStarted();
}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
try {
Method method = TcpDiscoveryGoogleStorageIpFinder.class.getDeclaredMethod("removeBucket", String.class);
method.setAccessible(true);
method.invoke(finder, bucketName);
}
catch (Exception e) {
log.warning("Failed to remove bucket on GCE [bucketName=" + bucketName + ", mes=" + e.getMessage() + ']');
}
}
/** {@inheritDoc} */
@Override protected TcpDiscoveryGoogleStorageIpFinder ipFinder() throws Exception {
TcpDiscoveryGoogleStorageIpFinder finder = new TcpDiscoveryGoogleStorageIpFinder();
injectLogger(finder);
assert finder.isShared() : "Ip finder must be shared by default.";
finder.setServiceAccountId(IgniteGCETestSuite.getServiceAccountId());
finder.setServiceAccountP12FilePath(IgniteGCETestSuite.getP12FilePath());
finder.setProjectName(IgniteGCETestSuite.getProjectName());
// Bucket name must be unique across the whole GCE platform.
finder.setBucketName(bucketName);
for (int i = 0; i < 5; i++) {
Collection<InetSocketAddress> addrs = finder.getRegisteredAddresses();
if (!addrs.isEmpty())
finder.unregisterAddresses(addrs);
else
return finder;
U.sleep(1000);
}
if (!finder.getRegisteredAddresses().isEmpty())
throw new Exception("Failed to initialize IP finder.");
return finder;
}
}