Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/test_grpc_service_smoke.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ int main() {
const auto token_path = temp.child("tokens.conf");
{
std::ofstream out(token_path);
out << "alice_token:ALPHA:Alpha station\n";
// Alice runs the smoke test end-to-end including admin RPCs
// (CreateSession + SetChannel), so she carries the admin role.
// Bob stays operator-only to mirror a normal joined station.
out << "alice_token:ALPHA:Alpha station:admin\n";
out << "bob_token:BRAVO:Bravo station\n";
}

Expand Down
Loading