blob: 2fe8ba943b21dc72561f326ada9938d89f87f35f [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/controls/progress_bar.h"
#include "base/strings/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/gfx/color_utils.h"
#include "ui/native_theme/native_theme.h"
namespace views {
TEST(ProgressBarTest, Accessibility) {
ProgressBar bar;
bar.SetValue(0.62);
ui::AXNodeData node_data;
bar.GetAccessibleNodeData(&node_data);
EXPECT_EQ(ui::AX_ROLE_PROGRESS_INDICATOR, node_data.role);
EXPECT_EQ(base::string16(), node_data.GetString16Attribute(ui::AX_ATTR_NAME));
EXPECT_FALSE(node_data.HasIntAttribute(ui::AX_ATTR_RESTRICTION));
}
// Test that default colors can be overridden. Used by Chromecast.
TEST(ProgressBarTest, OverrideDefaultColors) {
ProgressBar bar;
EXPECT_NE(SK_ColorRED, bar.GetForegroundColor());
EXPECT_NE(SK_ColorGREEN, bar.GetBackgroundColor());
EXPECT_NE(bar.GetForegroundColor(), bar.GetBackgroundColor());
bar.set_foreground_color(SK_ColorRED);
bar.set_background_color(SK_ColorGREEN);
EXPECT_EQ(SK_ColorRED, bar.GetForegroundColor());
EXPECT_EQ(SK_ColorGREEN, bar.GetBackgroundColor());
}
} // namespace views