blob: 324aee817e5f193283224d95c1c4155e004ae0f4 [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.internal.encryption;
import java.util.Collection;
import org.apache.ignite.internal.IgniteEx;
import org.apache.ignite.internal.managers.encryption.GroupKey;
import org.apache.ignite.internal.processors.cache.persistence.metastorage.MetaStorage;
import org.apache.ignite.internal.util.typedef.T2;
import org.apache.ignite.internal.util.typedef.internal.CU;
import org.junit.Test;
import static org.apache.ignite.internal.managers.encryption.GridEncryptionManager.ENCRYPTION_KEYS_PREFIX;
/**
*/
public class EncryptedCacheDestroyTest extends AbstractEncryptionTest {
/** {@inheritDoc} */
@Override protected void afterTest() throws Exception {
stopAllGrids();
cleanPersistenceDir();
}
/**
* @throws Exception If failed.
*/
@Test
public void testEncryptedCacheDestroy() throws Exception {
T2<IgniteEx, IgniteEx> grids = startTestGrids(true);
createEncryptedCache(grids.get1(), grids.get2(), cacheName(), null);
checkEncryptedCaches(grids.get1(), grids.get2());
String encryptedCacheName = cacheName();
grids.get1().destroyCache(encryptedCacheName);
checkCacheDestroyed(grids.get2(), encryptedCacheName, null, true);
stopAllGrids(true);
grids = startTestGrids(false);
checkCacheDestroyed(grids.get1(), encryptedCacheName, null, true);
}
/**
* @throws Exception If failed.
*/
@Test
public void testEncryptedCacheFromGroupDestroy() throws Exception {
T2<IgniteEx, IgniteEx> grids = startTestGrids(true);
String encCacheName = cacheName();
String grpName = "group1";
createEncryptedCache(grids.get1(), grids.get2(), encCacheName + "2", grpName);
createEncryptedCache(grids.get1(), grids.get2(), encCacheName, grpName);
checkEncryptedCaches(grids.get1(), grids.get2());
grids.get1().destroyCache(encCacheName);
checkCacheDestroyed(grids.get2(), encCacheName, grpName, false);
stopAllGrids(true);
grids = startTestGrids(false);
checkCacheDestroyed(grids.get1(), encCacheName, grpName, false);
grids.get1().destroyCache(encCacheName + "2");
checkCacheDestroyed(grids.get1(), encCacheName + "2", grpName, true);
stopAllGrids(true);
grids = startTestGrids(false);
checkCacheDestroyed(grids.get1(), encCacheName, grpName, true);
checkCacheDestroyed(grids.get1(), encCacheName + "2", grpName, true);
}
/** */
private void checkCacheDestroyed(IgniteEx grid, String encCacheName, String grpName, boolean keyShouldBeEmpty)
throws Exception {
awaitPartitionMapExchange();
Collection<String> cacheNames = grid.cacheNames();
for (String cacheName : cacheNames) {
if (cacheName.equals(encCacheName))
fail(encCacheName + " should be destroyed.");
}
int grpId = CU.cacheGroupId(encCacheName, grpName);
GroupKey encKey = grid.context().encryption().getActiveKey(grpId);
MetaStorage metaStore = grid.context().cache().context().database().metaStorage();
if (keyShouldBeEmpty) {
assertNull(encKey);
assertNull(metaStore.readRaw(ENCRYPTION_KEYS_PREFIX + grpId));
}
else {
assertNotNull(encKey);
assertNotNull(metaStore.readRaw(ENCRYPTION_KEYS_PREFIX + grpId));
}
}
}