HDFS-16458. [SPS]: Fix bug for unit test of reconfiguring SPS mode (#4041)

This commit is contained in:
litao 2022-03-02 11:25:50 +08:00 committed by GitHub
parent b56af00114
commit 9199787215
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -307,6 +307,8 @@ public class TestNameNodeReconfigure {
StoragePolicySatisfierMode.EXTERNAL.toString(), StoragePolicySatisfierMode.EXTERNAL.toString(),
nameNode.getConf().get(DFS_STORAGE_POLICY_SATISFIER_MODE_KEY, nameNode.getConf().get(DFS_STORAGE_POLICY_SATISFIER_MODE_KEY,
DFS_STORAGE_POLICY_SATISFIER_MODE_DEFAULT)); DFS_STORAGE_POLICY_SATISFIER_MODE_DEFAULT));
assertNotNull("SPS Manager should be created",
nameNode.getNamesystem().getBlockManager().getSPSManager());
} }
/** /**
@ -322,6 +324,8 @@ public class TestNameNodeReconfigure {
StoragePolicySatisfierMode.NONE.toString()); StoragePolicySatisfierMode.NONE.toString());
verifySPSEnabled(nameNode, DFS_STORAGE_POLICY_SATISFIER_MODE_KEY, verifySPSEnabled(nameNode, DFS_STORAGE_POLICY_SATISFIER_MODE_KEY,
StoragePolicySatisfierMode.NONE, false); StoragePolicySatisfierMode.NONE, false);
assertNull("SPS Manager should be null",
nameNode.getNamesystem().getBlockManager().getSPSManager());
Path filePath = new Path("/testSPS"); Path filePath = new Path("/testSPS");
DistributedFileSystem fileSystem = cluster.getFileSystem(); DistributedFileSystem fileSystem = cluster.getFileSystem();
@ -345,7 +349,7 @@ public class TestNameNodeReconfigure {
.getNamesystem().getBlockManager().getSPSManager(); .getNamesystem().getBlockManager().getSPSManager();
boolean isSPSRunning = spsMgr != null ? spsMgr.isSatisfierRunning() boolean isSPSRunning = spsMgr != null ? spsMgr.isSatisfierRunning()
: false; : false;
assertEquals(property + " has wrong value", isSPSRunning, isSPSRunning); assertEquals(property + " has wrong value", isSatisfierRunning, isSPSRunning);
String actual = nameNode.getConf().get(property, String actual = nameNode.getConf().get(property,
DFS_STORAGE_POLICY_SATISFIER_MODE_DEFAULT); DFS_STORAGE_POLICY_SATISFIER_MODE_DEFAULT);
assertEquals(property + " has wrong value", expected, assertEquals(property + " has wrong value", expected,