-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathtest_repeat_until_failure.h
51 lines (39 loc) · 1.51 KB
/
test_repeat_until_failure.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* test_repeat_until_failure.h
* =============================================================================
* Copyright 2021-2024 Serhii Snitsaruk
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
#ifndef TEST_REPEAT_UNTIL_FAILURE_H
#define TEST_REPEAT_UNTIL_FAILURE_H
#include "limbo_test.h"
#include "modules/limboai/bt/tasks/bt_task.h"
#include "modules/limboai/bt/tasks/decorators/bt_repeat_until_failure.h"
namespace TestRepeatUntilFailure {
TEST_CASE("[Modules][LimboAI] BTRepeatUntilFailure") {
Ref<BTRepeatUntilFailure> rep = memnew(BTRepeatUntilFailure);
SUBCASE("When empty") {
ERR_PRINT_OFF;
CHECK(rep->execute(0.01666) == BTTask::FAILURE);
ERR_PRINT_ON;
}
Ref<BTTestAction> task = memnew(BTTestAction);
rep->add_child(task);
SUBCASE("With various return statuses") {
task->ret_status = BTTask::SUCCESS;
CHECK(rep->execute(0.01666) == BTTask::RUNNING);
CHECK_STATUS_ENTRIES_TICKS_EXITS(task, BTTask::SUCCESS, 1, 1, 1);
task->ret_status = BTTask::RUNNING;
CHECK(rep->execute(0.01666) == BTTask::RUNNING);
CHECK_STATUS_ENTRIES_TICKS_EXITS(task, BTTask::RUNNING, 2, 2, 1);
task->ret_status = BTTask::FAILURE;
CHECK(rep->execute(0.01666) == BTTask::SUCCESS);
CHECK_STATUS_ENTRIES_TICKS_EXITS(task, BTTask::FAILURE, 2, 3, 2);
}
}
} //namespace TestRepeatUntilFailure
#endif // TEST_REPEAT_UNTIL_FAILURE_H