forked from belaban/JGroups
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
193 additions
and
0 deletions.
There are no files selected for viewing
193 changes: 193 additions & 0 deletions
193
tests/junit-functional/org/jgroups/protocols/FLUSH_STOP_FLUSH_Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
package org.jgroups.protocols; | ||
|
||
import org.jgroups.*; | ||
import org.jgroups.util.*; | ||
import org.jgroups.stack.*; | ||
import org.jgroups.conf.ClassConfigurator; | ||
import org.jgroups.stack.Protocol; | ||
import org.jgroups.protocols.TP; | ||
import org.jgroups.protocols.pbcast.FLUSH; | ||
import org.jgroups.protocols.pbcast.FLUSH.FlushHeader; | ||
import org.testng.Assert; | ||
import org.testng.annotations.AfterMethod; | ||
import org.testng.annotations.BeforeMethod; | ||
import org.testng.annotations.Test; | ||
|
||
import java.lang.reflect.Field; | ||
import java.util.Collection; | ||
import java.util.List; | ||
import java.util.ArrayList; | ||
|
||
/** | ||
* Tests the FLUSH STOP_FLUSH behavior | ||
* @author Dennis Reed | ||
*/ | ||
@Test(groups=Global.FUNCTIONAL,sequential=true) | ||
public class FLUSH_STOP_FLUSH_Test { | ||
static final short FLUSH_ID=ClassConfigurator.getProtocolId(FLUSH.class); | ||
IpAddress a1; | ||
FLUSH flush; | ||
StopFlushInterceptor downInterceptor; | ||
BlockInterceptor upInterceptor; | ||
|
||
@BeforeMethod | ||
public void setUp() throws Exception { | ||
a1=new IpAddress(1111); | ||
|
||
flush=new FLUSH(); | ||
downInterceptor = new StopFlushInterceptor(a1); | ||
downInterceptor.setUpProtocol(flush); | ||
flush.setDownProtocol(downInterceptor); | ||
|
||
TP transport=new TP() { | ||
public boolean supportsMulticasting() {return false;} | ||
public void sendMulticast(byte[] data, int offset, int length) throws Exception {} | ||
public void sendUnicast(PhysicalAddress dest, byte[] data, int offset, int length) throws Exception {} | ||
public String getInfo() {return null;} | ||
public Object down(Event evt) { return null; } | ||
protected PhysicalAddress getPhysicalAddress() {return null;} | ||
public TimeScheduler getTimer() {return new DefaultTimeScheduler(1);} | ||
}; | ||
downInterceptor.setDownProtocol(transport); | ||
|
||
upInterceptor = new BlockInterceptor(); | ||
flush.setUpProtocol(upInterceptor); | ||
|
||
flush.start(); | ||
|
||
List<Address> members=new ArrayList<Address>(1); | ||
members.add(a1); | ||
View view=new View(a1, 1, members); | ||
|
||
// set the local address | ||
flush.down(new Event(Event.SET_LOCAL_ADDRESS,a1)); | ||
|
||
// set dummy view | ||
flush.up(new Event(Event.VIEW_CHANGE,view)); | ||
} | ||
|
||
@AfterMethod | ||
protected void tearDown() { | ||
flush.stop(); | ||
} | ||
|
||
@Test | ||
public void testStopFlush() throws InterruptedException { | ||
flush.down(new Event(Event.SUSPEND)); | ||
Assert.assertTrue(upInterceptor.isBlocked()); | ||
|
||
flush.down(new Event(Event.RESUME)); | ||
Assert.assertFalse(upInterceptor.isBlocked()); | ||
|
||
// Verify flushParticipants is set correctly on the STOP_FLUSH message | ||
Collection<Address> flushParticipants = downInterceptor.getFlushParticipants(); | ||
Assert.assertNotNull(flushParticipants); | ||
Assert.assertEquals(1, flushParticipants.size()); | ||
Assert.assertTrue(flushParticipants.contains(a1)); | ||
} | ||
|
||
@Test | ||
public void testRogueStopFlush() throws InterruptedException { | ||
flush.down(new Event(Event.SUSPEND)); | ||
Assert.assertTrue(upInterceptor.isBlocked()); | ||
|
||
// STOP_FLUSH that is not addressed to this member | ||
Address a2 = new IpAddress(2222); | ||
Message msg = new Message(null, a2, null); | ||
Collection<Address> flushMembers = new ArrayList<Address>(); | ||
flushMembers.add(a2); | ||
msg.putHeader(FLUSH_ID, new FlushHeader(FlushHeader.STOP_FLUSH, 1, flushMembers)); | ||
flush.up(new Event(Event.MSG, msg)); | ||
|
||
// Should still be blocked | ||
Assert.assertTrue(upInterceptor.isBlocked()); | ||
} | ||
|
||
static class StopFlushInterceptor extends Protocol { | ||
private Collection<Address> flushParticipants; | ||
private Address address; | ||
private static Field typeField; | ||
private static Field flushParticipantsField; | ||
|
||
static { | ||
try { | ||
typeField = FlushHeader.class.getDeclaredField("type"); | ||
typeField.setAccessible(true); | ||
|
||
flushParticipantsField = FlushHeader.class.getDeclaredField("flushParticipants"); | ||
flushParticipantsField.setAccessible(true); | ||
} | ||
catch ( NoSuchFieldException e ) | ||
{ | ||
Assert.fail("FlushHeader is missing fields checked by test case", e); | ||
} | ||
} | ||
|
||
public StopFlushInterceptor ( Address address ) { | ||
this.address = address; | ||
} | ||
|
||
public String getName () { | ||
return "StopFlushInterceptor"; | ||
} | ||
|
||
public Object down(Event evt) { | ||
if(evt.getType() == Event.MSG) { | ||
Message msg=(Message)evt.getArg(); | ||
FlushHeader hdr=(FlushHeader)msg.getHeader(FLUSH_ID); | ||
if(hdr != null) { | ||
try { | ||
byte type = typeField.getByte(hdr); | ||
if(type == FlushHeader.STOP_FLUSH) { | ||
this.flushParticipants = (Collection<Address>)flushParticipantsField.get(hdr); | ||
} | ||
} | ||
catch ( IllegalAccessException e ) | ||
{ | ||
Assert.fail("Could not make FlushHeader fields used by test accessible"); | ||
} | ||
} | ||
|
||
// loopback | ||
if(msg.getDest() == null || msg.getDest().equals(this.address)) | ||
{ | ||
msg.setSrc(this.address); | ||
getUpProtocol().up(evt); | ||
} | ||
} | ||
|
||
return super.down(evt); | ||
} | ||
|
||
public Collection<Address> getFlushParticipants () | ||
{ | ||
return this.flushParticipants; | ||
} | ||
} | ||
|
||
static class BlockInterceptor extends Protocol { | ||
private boolean blocked = false; | ||
|
||
public BlockInterceptor () { | ||
} | ||
|
||
public String getName () { | ||
return "BlockInterceptor"; | ||
} | ||
|
||
public Object up(Event evt) { | ||
if(evt.getType() == Event.BLOCK) { | ||
this.blocked = true; | ||
} else if(evt.getType() == Event.UNBLOCK) { | ||
this.blocked = false; | ||
} | ||
|
||
return null; | ||
} | ||
|
||
public boolean isBlocked() | ||
{ | ||
return this.blocked; | ||
} | ||
} | ||
} |