blob: 70edcfb905820b542722a83321084dfd8bee3a4e [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.
*/
namespace Apache.Ignite.Core.Tests.Dataload
{
using System;
using System.IO;
using System.Threading;
using NUnit.Framework;
/// <summary>
/// Streamer test with topology change.
/// </summary>
public class DataStreamerTestTopologyChange
{
/// <summary>
/// Tests the streamer on a node without cache.
/// </summary>
[Test]
public void TestNoCacheNode()
{
const string cacheName = "cache";
var cacheNodeCfg = new IgniteConfiguration(TestUtils.GetTestConfiguration())
{
SpringConfigUrl = Path.Combine("Config", "cache-local-node.xml"),
IgniteInstanceName = "cacheGrid"
};
using (var gridNoCache = Ignition.Start(TestUtils.GetTestConfiguration()))
{
Assert.Throws<ArgumentException>(() => gridNoCache.GetCache<int, int>(cacheName));
var gridWithCache = Ignition.Start(cacheNodeCfg);
var streamer = gridNoCache.GetDataStreamer<int, int>(cacheName);
streamer.AddData(1, 2);
streamer.Flush();
Ignition.Stop(gridWithCache.Name, true);
Thread.Sleep(500); // Wait for node to stop
var task = streamer.AddData(2, 3);
streamer.Flush();
var ex = Assert.Throws<AggregateException>(task.Wait).InnerException;
Assert.IsNotNull(ex);
Assert.AreEqual("Java exception occurred [class=org.apache.ignite.cache." +
"CacheServerNotFoundException, message=Failed to find server node for cache " +
"(all affinity nodes have left the grid or cache was stopped): cache]", ex.Message);
}
}
/// <summary>
/// Streamer test with destroyed cache.
/// </summary>
[Test]
public void TestDestroyCache()
{
const string cacheName = "cache";
using (var grid = Ignition.Start(TestUtils.GetTestConfiguration()))
{
grid.CreateCache<int, int>(cacheName);
var streamer = grid.GetDataStreamer<int, int>(cacheName);
var task = streamer.AddData(1, 2);
streamer.Flush();
task.Wait();
grid.DestroyCache(cacheName);
task = streamer.AddData(2, 3);
streamer.Flush();
var ex = Assert.Throws<AggregateException>(task.Wait).InnerException;
Assert.IsNotNull(ex);
Assert.AreEqual("class org.apache.ignite.IgniteCheckedException: DataStreamer data loading failed.",
ex.Message);
}
}
}
}