Test flow controller functionality. More...
Classes | |
class | HighWaterHelper |
Public Member Functions | |
void | setUp () throws Exception |
void | testBasicControlFlow () throws Throwable |
void | testInterestFirst () throws Throwable |
void | testNextBeforePut () throws Throwable |
void | testLastBeforePut () throws Throwable |
void | testPutsOrdered () throws Throwable |
void | testRandomOrderPuts () throws Throwable |
void | testMixedOrderInterestPut () throws Throwable |
Test method for an order case that failed in practice for RepoIOTest when matching was broken. | |
void | testWaitForPutDrain () throws Throwable |
void | testHighwaterWait () throws Throwable |
Static Package Functions | |
[static initializer] | |
Package Attributes | |
ContentObject | obj1 = ContentObject.buildContentObject(name1, "test".getBytes()) |
ContentName | v1s1 = SegmentationProfile.segmentName(v1, 1) |
ContentObject | objv1s1 = ContentObject.buildContentObject(v1s1, "v1s1".getBytes()) |
ContentName | v1s2 = SegmentationProfile.segmentName(v1, 2) |
ContentObject | objv1s2 = ContentObject.buildContentObject(v1s2, "v1s2".getBytes()) |
ContentName | v1s3 = SegmentationProfile.segmentName(v1, 3) |
ContentObject | objv1s3 = ContentObject.buildContentObject(v1s3, "v1s3".getBytes()) |
ContentName | v1s4 = SegmentationProfile.segmentName(v1, 4) |
ContentObject | objv1s4 = ContentObject.buildContentObject(v1s4, "v1s4".getBytes()) |
ContentName | v1s5 = SegmentationProfile.segmentName(v1, 5) |
ContentObject | objv1s5 = ContentObject.buildContentObject(v1s5, "v1s5".getBytes()) |
Queue< ContentObject > | queue = _handle.getOutputQueue() |
ArrayList< Interest > | interestList = new ArrayList<Interest>() |
CCNFlowControl | fc = null |
Static Package Attributes | |
static ContentName | name1 |
static ContentName | v1 |
static ContentName | v2 |
Test flow controller functionality.
void org.ccnx.ccn.test.impl.CCNFlowControlTest.testMixedOrderInterestPut | ( | ) | throws Throwable |
Test method for an order case that failed in practice for RepoIOTest when matching was broken.
Throwable |