-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BIGTOP-4363: Add some unit tests for stack core module (#178)
- Loading branch information
Showing
19 changed files
with
1,890 additions
and
8 deletions.
There are no files selected for viewing
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
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
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
97 changes: 97 additions & 0 deletions
97
...r-stack-core/src/test/java/org/apache/bigtop/manager/stack/core/spi/hook/AddHookTest.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,97 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.bigtop.manager.stack.core.spi.hook; | ||
|
||
import org.apache.bigtop.manager.stack.core.spi.param.Params; | ||
import org.apache.bigtop.manager.stack.core.utils.linux.LinuxAccountUtils; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.Mock; | ||
import org.mockito.MockedStatic; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import static org.mockito.Mockito.any; | ||
import static org.mockito.Mockito.doCallRealMethod; | ||
import static org.mockito.Mockito.doNothing; | ||
import static org.mockito.Mockito.mockStatic; | ||
import static org.mockito.Mockito.never; | ||
import static org.mockito.Mockito.times; | ||
import static org.mockito.Mockito.verify; | ||
import static org.mockito.Mockito.when; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
public class AddHookTest { | ||
|
||
@Mock | ||
private AddHook addHook; | ||
|
||
@Mock | ||
private Params params; | ||
|
||
@Test | ||
public void testDoBefore() { | ||
doNothing().when(addHook).addUserAndGroup(any()); | ||
doCallRealMethod().when(addHook).doBefore(any()); | ||
addHook.doBefore(params); | ||
verify(addHook, times(1)).addUserAndGroup(params); | ||
} | ||
|
||
@Test | ||
public void testDoAfter() { | ||
doCallRealMethod().when(addHook).doAfter(any()); | ||
addHook.doAfter(params); | ||
verify(addHook, never()).addUserAndGroup(params); | ||
} | ||
|
||
@Test | ||
public void testGetName() { | ||
doCallRealMethod().when(addHook).getName(); | ||
String name = addHook.getName(); | ||
assert name.equals("add"); | ||
} | ||
|
||
@Test | ||
public void testAddUserAndGroup() { | ||
try (MockedStatic<LinuxAccountUtils> linuxAccountUtilsMockedStatic = mockStatic(LinuxAccountUtils.class)) { | ||
when(params.user()).thenReturn("testUser"); | ||
when(params.group()).thenReturn("testGroup1"); | ||
doCallRealMethod().when(addHook).addUserAndGroup(any()); | ||
|
||
linuxAccountUtilsMockedStatic | ||
.when(() -> LinuxAccountUtils.userAdd(any(), any())) | ||
.thenAnswer(invocation -> null); | ||
linuxAccountUtilsMockedStatic | ||
.when(() -> LinuxAccountUtils.groupAdd(any())) | ||
.thenAnswer(invocation -> null); | ||
|
||
linuxAccountUtilsMockedStatic | ||
.when(() -> LinuxAccountUtils.getUserPrimaryGroup(any())) | ||
.thenReturn("testGroup1"); | ||
addHook.addUserAndGroup(params); | ||
linuxAccountUtilsMockedStatic.verify(() -> LinuxAccountUtils.userAdd(any(), any()), never()); | ||
|
||
linuxAccountUtilsMockedStatic | ||
.when(() -> LinuxAccountUtils.getUserPrimaryGroup(any())) | ||
.thenReturn("testGroup2"); | ||
addHook.addUserAndGroup(params); | ||
linuxAccountUtilsMockedStatic.verify(() -> LinuxAccountUtils.userAdd(any(), any()), times(1)); | ||
} | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...ack-core/src/test/java/org/apache/bigtop/manager/stack/core/spi/hook/RestartHookTest.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,62 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.bigtop.manager.stack.core.spi.hook; | ||
|
||
import org.apache.bigtop.manager.stack.core.spi.param.Params; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import static org.mockito.ArgumentMatchers.any; | ||
import static org.mockito.Mockito.doCallRealMethod; | ||
import static org.mockito.Mockito.times; | ||
import static org.mockito.Mockito.verify; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
public class RestartHookTest { | ||
|
||
@Mock | ||
private RestartHook restartHook; | ||
|
||
@Mock | ||
private Params params; | ||
|
||
@Test | ||
public void testDoBefore() { | ||
doCallRealMethod().when(restartHook).doBefore(any()); | ||
restartHook.doBefore(params); | ||
verify(restartHook, times(1)).doBefore(params); | ||
} | ||
|
||
@Test | ||
public void testDoAfter() { | ||
doCallRealMethod().when(restartHook).doAfter(any()); | ||
restartHook.doAfter(params); | ||
verify(restartHook, times(1)).doAfter(params); | ||
} | ||
|
||
@Test | ||
public void testGetName() { | ||
doCallRealMethod().when(restartHook).getName(); | ||
String name = restartHook.getName(); | ||
assert name.equals("restart"); | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...stack-core/src/test/java/org/apache/bigtop/manager/stack/core/spi/hook/StartHookTest.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,62 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.bigtop.manager.stack.core.spi.hook; | ||
|
||
import org.apache.bigtop.manager.stack.core.spi.param.Params; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import static org.mockito.ArgumentMatchers.any; | ||
import static org.mockito.Mockito.doCallRealMethod; | ||
import static org.mockito.Mockito.times; | ||
import static org.mockito.Mockito.verify; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
public class StartHookTest { | ||
|
||
@Mock | ||
private StartHook startHook; | ||
|
||
@Mock | ||
private Params params; | ||
|
||
@Test | ||
public void testDoBefore() { | ||
doCallRealMethod().when(startHook).doBefore(any()); | ||
startHook.doBefore(params); | ||
verify(startHook, times(1)).doBefore(params); | ||
} | ||
|
||
@Test | ||
public void testDoAfter() { | ||
doCallRealMethod().when(startHook).doAfter(any()); | ||
startHook.doAfter(params); | ||
verify(startHook, times(1)).doAfter(params); | ||
} | ||
|
||
@Test | ||
public void testGetName() { | ||
doCallRealMethod().when(startHook).getName(); | ||
String name = startHook.getName(); | ||
assert name.equals("start"); | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...-stack-core/src/test/java/org/apache/bigtop/manager/stack/core/spi/hook/StopHookTest.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,62 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.bigtop.manager.stack.core.spi.hook; | ||
|
||
import org.apache.bigtop.manager.stack.core.spi.param.Params; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import static org.mockito.ArgumentMatchers.any; | ||
import static org.mockito.Mockito.doCallRealMethod; | ||
import static org.mockito.Mockito.times; | ||
import static org.mockito.Mockito.verify; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
public class StopHookTest { | ||
|
||
@Mock | ||
private StopHook stopHook; | ||
|
||
@Mock | ||
private Params params; | ||
|
||
@Test | ||
public void testDoBefore() { | ||
doCallRealMethod().when(stopHook).doBefore(any()); | ||
stopHook.doBefore(params); | ||
verify(stopHook, times(1)).doBefore(params); | ||
} | ||
|
||
@Test | ||
public void testDoAfter() { | ||
doCallRealMethod().when(stopHook).doAfter(any()); | ||
stopHook.doAfter(params); | ||
verify(stopHook, times(1)).doAfter(params); | ||
} | ||
|
||
@Test | ||
public void testGetName() { | ||
doCallRealMethod().when(stopHook).getName(); | ||
String name = stopHook.getName(); | ||
assert name.equals("stop"); | ||
} | ||
} |
Oops, something went wrong.