summaryrefslogtreecommitdiff
path: root/chromium/ui/base/x/x11_cursor_factory_unittest.cc
blob: 9bdb14158b440f83fe0915236c57eb775f9e4870 (plain)
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
// Copyright 2017 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/base/x/x11_cursor_factory.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/base/cursor/mojom/cursor_type.mojom.h"
#include "ui/base/cursor/platform_cursor.h"
#include "ui/base/x/x11_cursor.h"
#include "ui/gfx/geometry/point.h"

namespace ui {

using mojom::CursorType;

TEST(X11CursorFactoryTest, InvisibleCursor) {
  X11CursorFactory factory;

  // Building an image cursor with an invalid SkBitmap should return the
  // invisible cursor in X11.
  auto invisible_cursor =
      factory.CreateImageCursor({}, SkBitmap(), gfx::Point());
  ASSERT_NE(invisible_cursor, nullptr);
  EXPECT_EQ(invisible_cursor, factory.GetDefaultCursor(CursorType::kNone));
}

}  // namespace ui