-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathbootstrapper_ut.cpp
142 lines (106 loc) · 4.42 KB
/
bootstrapper_ut.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#include "bootstrapper.h"
#include <cloud/blockstore/libs/storage/api/bootstrapper.h>
#include <cloud/blockstore/libs/storage/testlib/test_runtime.h>
#include <cloud/blockstore/libs/storage/testlib/test_tablet.h>
#include <contrib/ydb/core/base/tablet.h>
#include <contrib/ydb/core/tablet/tablet_setup.h>
#include <library/cpp/testing/unittest/registar.h>
namespace NCloud::NBlockStore::NStorage {
using namespace NActors;
using namespace NKikimr;
namespace {
////////////////////////////////////////////////////////////////////////////////
std::unique_ptr<TTestActorRuntime> PrepareTestActorRuntime()
{
auto runtime = std::make_unique<TTestBasicRuntime>(1, true);
runtime->AppendToLogSettings(
TBlockStoreComponents::START,
TBlockStoreComponents::END,
GetComponentName);
// for (ui32 i = TBlockStoreComponents::START; i < TBlockStoreComponents::END; ++i) {
// runtime->SetLogPriority(i, NLog::PRI_DEBUG);
// }
// runtime->SetLogPriority(NLog::InvalidComponent, NLog::PRI_DEBUG);
runtime->SetLogPriority(NKikimrServices::BS_NODE, NLog::PRI_ERROR);
SetupTabletServices(*runtime);
return runtime;
}
TTabletSetupInfoPtr PrepareTabletSetupInfo(TTestActorRuntime& runtime)
{
const auto& appData = runtime.GetAppData();
auto factory = [=] (const TActorId& owner, TTabletStorageInfo* storage) {
auto actor = CreateTestTablet(owner, storage);
return actor.release();
};
return MakeIntrusive<TTabletSetupInfo>(
factory,
TMailboxType::ReadAsFilled,
appData.UserPoolId,
TMailboxType::ReadAsFilled,
appData.SystemPoolId);
}
void StartTablet(TTestActorRuntime& runtime, const TActorId& bootstrapper, const TActorId& sender)
{
Send(runtime, bootstrapper, sender, std::make_unique<TEvBootstrapper::TEvStart>());
TAutoPtr<IEventHandle> handle;
auto response = runtime.GrabEdgeEventRethrow<TEvBootstrapper::TEvStatus>(handle);
UNIT_ASSERT(response);
UNIT_ASSERT_C(response->Status == TEvBootstrapper::STARTED, response->Message);
}
void StopTablet(TTestActorRuntime& runtime, const TActorId& bootstrapper, const TActorId& sender)
{
Send(runtime, bootstrapper, sender, std::make_unique<TEvBootstrapper::TEvStop>());
TAutoPtr<IEventHandle> handle;
auto response = runtime.GrabEdgeEventRethrow<TEvBootstrapper::TEvStatus>(handle);
UNIT_ASSERT(response);
UNIT_ASSERT_C(response->Status == TEvBootstrapper::STOPPED, response->Message);
}
void KillTablet(TTestActorRuntime& runtime, ui64 tablet, const TActorId& sender)
{
SendToPipe(runtime, tablet, sender, std::make_unique<TEvents::TEvPoisonPill>());
TAutoPtr<IEventHandle> handle;
auto response = runtime.GrabEdgeEventRethrow<TEvBootstrapper::TEvStatus>(handle);
UNIT_ASSERT(response);
UNIT_ASSERT_C(response->Status == TEvBootstrapper::STARTED, response->Message);
}
} // namespace
////////////////////////////////////////////////////////////////////////////////
Y_UNIT_TEST_SUITE(TBootstrapperTest)
{
Y_UNIT_TEST(ShouldStartStopTablet)
{
auto runtime = PrepareTestActorRuntime();
auto sender = runtime->AllocateEdgeActor();
TTabletStorageInfoPtr storageInfo = CreateTestTabletInfo(
TestTabletId,
TTabletTypes::BlockStorePartition);
auto setupInfo = PrepareTabletSetupInfo(*runtime);
auto bootstrapper = Register(*runtime, CreateBootstrapper(
TBootstrapperConfig(),
sender,
std::move(storageInfo),
std::move(setupInfo)));
StartTablet(*runtime, bootstrapper, sender);
StopTablet(*runtime, bootstrapper, sender);
}
Y_UNIT_TEST(ShouldRestartTablet)
{
auto runtime = PrepareTestActorRuntime();
auto sender = runtime->AllocateEdgeActor();
TTabletStorageInfoPtr storageInfo = CreateTestTabletInfo(
TestTabletId,
TTabletTypes::BlockStorePartition);
auto setupInfo = PrepareTabletSetupInfo(*runtime);
TBootstrapperConfig config;
config.CoolDownTimeout = TDuration::Zero();
config.RestartAlways = true;
auto bootstrapper = Register(*runtime, CreateBootstrapper(
config,
sender,
std::move(storageInfo),
std::move(setupInfo)));
StartTablet(*runtime, bootstrapper, sender);
KillTablet(*runtime, TestTabletId, sender);
}
}
} // namespace NCloud::NBlockStore::NStorage