blob: ea16b1cff2e2a7f0fc77d1bf417e196e925e841b [file] [log] [blame]
// 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
//
// http://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.
#include <gtest/gtest.h>
#include <gflags/gflags.h>
#include <unordered_set>
#include "kudu/gutil/map-util.h"
#include "kudu/util/flag_tags.h"
#include "kudu/util/test_util.h"
DEFINE_int32(flag_with_no_tags, 0, "test flag that has no tags");
DEFINE_int32(flag_with_one_tag, 0, "test flag that has 1 tag");
TAG_FLAG(flag_with_one_tag, stable);
DEFINE_int32(flag_with_two_tags, 0, "test flag that has 2 tags");
TAG_FLAG(flag_with_two_tags, evolving);
TAG_FLAG(flag_with_two_tags, unsafe);
using std::string;
using std::unordered_set;
namespace kudu {
class FlagTagsTest : public KuduTest {
};
TEST_F(FlagTagsTest, TestTags) {
unordered_set<string> tags;
GetFlagTags("flag_with_no_tags", &tags);
EXPECT_EQ(0, tags.size());
GetFlagTags("flag_with_one_tag", &tags);
EXPECT_EQ(1, tags.size());
EXPECT_TRUE(ContainsKey(tags, "stable"));
GetFlagTags("flag_with_two_tags", &tags);
EXPECT_EQ(2, tags.size());
EXPECT_TRUE(ContainsKey(tags, "evolving"));
EXPECT_TRUE(ContainsKey(tags, "unsafe"));
GetFlagTags("missing_flag", &tags);
EXPECT_EQ(0, tags.size());
}
} // namespace kudu