use of org.apache.ignite.testframework.GridTestNode in project ignite by apache.
the class GridJobStealingFailoverSpiSelfTest method testThiefNotInTopology.
/**
* @throws Exception If test failed.
*/
public void testThiefNotInTopology() throws Exception {
ClusterNode rmt = new GridTestNode(UUID.randomUUID());
GridTestJobResult failed = new GridTestJobResult(rmt);
failed.getJobContext().setAttribute(THIEF_NODE_ATTR, rmt.id());
ClusterNode other = getSpi().failover(new GridFailoverTestContext(new GridTestTaskSession(), failed), new ArrayList<>(getSpiContext().nodes()));
assert other != null;
assert other != rmt;
assert getSpiContext().nodes().contains(other);
checkAttributes(failed.getJobContext(), rmt, 1);
}
use of org.apache.ignite.testframework.GridTestNode in project ignite by apache.
the class GridJobStealingFailoverSpiStartStopSelfTest method initSpiContext.
/**
* {@inheritDoc}
*/
@Override
protected GridSpiTestContext initSpiContext() throws Exception {
GridSpiTestContext ctx = super.initSpiContext();
GridTestNode locNode = new GridTestNode(UUID.randomUUID());
addSpiDependency(locNode);
ctx.setLocalNode(locNode);
return ctx;
}
use of org.apache.ignite.testframework.GridTestNode in project ignite by apache.
the class GridNeverFailoverSpiSelfTest method testAlwaysNull.
/**
* @throws Exception If failed.
*/
public void testAlwaysNull() throws Exception {
List<ClusterNode> nodes = new ArrayList<>();
ClusterNode node = new GridTestNode(UUID.randomUUID());
nodes.add(node);
assert getSpi().failover(new GridFailoverTestContext(new GridTestTaskSession(), new GridTestJobResult(node)), nodes) == null;
}
use of org.apache.ignite.testframework.GridTestNode in project ignite by apache.
the class GridAdaptiveLoadBalancingSpiMultipleNodeSelfTest method initSpiContext.
/**
* {@inheritDoc}
*/
@Override
protected GridSpiTestContext initSpiContext() throws Exception {
GridSpiTestContext ctx = super.initSpiContext();
for (int i = 0; i < RMT_NODE_CNT; i++) {
GridTestNode node = new GridTestNode(UUID.randomUUID());
node.setAttribute("load", (double) (i + 1));
ctx.addNode(node);
}
return ctx;
}
use of org.apache.ignite.testframework.GridTestNode in project ignite by apache.
the class GridAdaptiveLoadBalancingSpiMultipleNodeSelfTest method testWeights.
/**
* @throws Exception If failed.
*/
public void testWeights() throws Exception {
// Seal it.
List<ClusterNode> nodes = new ArrayList<>(getSpiContext().remoteNodes());
int[] cnts = new int[RMT_NODE_CNT];
// Invoke load balancer a large number of times, so statistics won't lie.
for (int i = 0; i < 50000; i++) {
GridTestNode node = (GridTestNode) getSpi().getBalancedNode(new GridTestTaskSession(IgniteUuid.randomUuid()), nodes, new GridTestJob());
int idx = ((Double) node.attribute("load")).intValue() - 1;
if (cnts[idx] == 0)
node.setAttribute("used", true);
// Increment number of times a node was picked.
cnts[idx]++;
}
info("Node counts: " + Arrays.toString(cnts));
for (int i = 0; i < cnts.length - 1; i++) {
assert cnts[i] > cnts[i + 1] : "Invalid node counts for index [idx=" + i + ", cnts[i]=" + cnts[i] + ", cnts[i+1]=" + cnts[i + 1] + ']';
}
}
Aggregations