|
@@ -81,8 +81,8 @@ public class TestRouterQuotaManager {
|
|
|
|
|
|
// test case2: get quota from an no-quota set path
|
|
|
RouterQuotaUsage.Builder quota = new RouterQuotaUsage.Builder()
|
|
|
- .quota(HdfsConstants.QUOTA_DONT_SET)
|
|
|
- .spaceQuota(HdfsConstants.QUOTA_DONT_SET);
|
|
|
+ .quota(HdfsConstants.QUOTA_RESET)
|
|
|
+ .spaceQuota(HdfsConstants.QUOTA_RESET);
|
|
|
manager.put("/noQuotaSet", quota.build());
|
|
|
quotaGet = manager.getQuotaUsage("/noQuotaSet");
|
|
|
// it should return null
|
|
@@ -90,36 +90,36 @@ public class TestRouterQuotaManager {
|
|
|
|
|
|
// test case3: get quota from an quota-set path
|
|
|
quota.quota(1);
|
|
|
- quota.spaceQuota(HdfsConstants.QUOTA_DONT_SET);
|
|
|
+ quota.spaceQuota(HdfsConstants.QUOTA_RESET);
|
|
|
manager.put("/hasQuotaSet", quota.build());
|
|
|
quotaGet = manager.getQuotaUsage("/hasQuotaSet");
|
|
|
assertEquals(1, quotaGet.getQuota());
|
|
|
- assertEquals(HdfsConstants.QUOTA_DONT_SET, quotaGet.getSpaceQuota());
|
|
|
+ assertEquals(HdfsConstants.QUOTA_RESET, quotaGet.getSpaceQuota());
|
|
|
|
|
|
// test case4: get quota with an non-exist child path
|
|
|
quotaGet = manager.getQuotaUsage("/hasQuotaSet/file");
|
|
|
// it will return the nearest ancestor which quota was set
|
|
|
assertEquals(1, quotaGet.getQuota());
|
|
|
- assertEquals(HdfsConstants.QUOTA_DONT_SET, quotaGet.getSpaceQuota());
|
|
|
+ assertEquals(HdfsConstants.QUOTA_RESET, quotaGet.getSpaceQuota());
|
|
|
|
|
|
// test case5: get quota with an child path which its parent
|
|
|
// wasn't quota set
|
|
|
- quota.quota(HdfsConstants.QUOTA_DONT_SET);
|
|
|
- quota.spaceQuota(HdfsConstants.QUOTA_DONT_SET);
|
|
|
+ quota.quota(HdfsConstants.QUOTA_RESET);
|
|
|
+ quota.spaceQuota(HdfsConstants.QUOTA_RESET);
|
|
|
manager.put("/hasQuotaSet/noQuotaSet", quota.build());
|
|
|
// here should returns the quota of path /hasQuotaSet
|
|
|
// (the nearest ancestor which quota was set)
|
|
|
quotaGet = manager.getQuotaUsage("/hasQuotaSet/noQuotaSet/file");
|
|
|
assertEquals(1, quotaGet.getQuota());
|
|
|
- assertEquals(HdfsConstants.QUOTA_DONT_SET, quotaGet.getSpaceQuota());
|
|
|
+ assertEquals(HdfsConstants.QUOTA_RESET, quotaGet.getSpaceQuota());
|
|
|
|
|
|
// test case6: get quota with an child path which its parent was quota set
|
|
|
quota.quota(2);
|
|
|
- quota.spaceQuota(HdfsConstants.QUOTA_DONT_SET);
|
|
|
+ quota.spaceQuota(HdfsConstants.QUOTA_RESET);
|
|
|
manager.put("/hasQuotaSet/hasQuotaSet", quota.build());
|
|
|
// here should return the quota of path /hasQuotaSet/hasQuotaSet
|
|
|
quotaGet = manager.getQuotaUsage("/hasQuotaSet/hasQuotaSet/file");
|
|
|
assertEquals(2, quotaGet.getQuota());
|
|
|
- assertEquals(HdfsConstants.QUOTA_DONT_SET, quotaGet.getSpaceQuota());
|
|
|
+ assertEquals(HdfsConstants.QUOTA_RESET, quotaGet.getSpaceQuota());
|
|
|
}
|
|
|
}
|