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

ash / wm / cursor_manager_chromeos_unittest.cc [blame]

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ash/constants/ash_switches.h"
#include "ash/shell.h"
#include "ash/test/ash_test_base.h"
#include "base/command_line.h"
#include "ui/wm/core/cursor_manager.h"

namespace ash {

using CursorManagerChromeosTest = AshTestBase;

// Verifies the cursor's visibility after receiving key commands.
TEST_F(CursorManagerChromeosTest, VerifyVisibilityAfterKeyCommands) {
  auto* cursor_manager = Shell::Get()->cursor_manager();
  ASSERT_TRUE(cursor_manager->IsCursorVisible());

  // Pressing the normal key should hide the cursor.
  PressAndReleaseKey(ui::KeyboardCode::VKEY_C);
  EXPECT_FALSE(cursor_manager->IsCursorVisible());

  // Move the mouse and the cursor should show.
  GetEventGenerator()->MoveMouseBy(/*x=*/1, /*y=*/1);
  EXPECT_TRUE(cursor_manager->IsCursorVisible());

  // The command key commands should not hide the cursor.
  PressAndReleaseKey(ui::KeyboardCode::VKEY_C, ui::EF_COMMAND_DOWN);
  EXPECT_TRUE(cursor_manager->IsCursorVisible());

  // The alt key commands should not hide the cursor.
  PressAndReleaseKey(ui::KeyboardCode::VKEY_C, ui::EF_ALT_DOWN);
  EXPECT_TRUE(cursor_manager->IsCursorVisible());

  // The control key commands should not hide the cursor.
  PressAndReleaseKey(ui::KeyboardCode::VKEY_C, ui::EF_CONTROL_DOWN);
  EXPECT_TRUE(cursor_manager->IsCursorVisible());
}

class ForceShowCursorManagerChromeosTest : public AshTestBase {
 public:
  ForceShowCursorManagerChromeosTest() = default;
  ForceShowCursorManagerChromeosTest(
      const ForceShowCursorManagerChromeosTest&) = delete;
  ForceShowCursorManagerChromeosTest& operator=(
      const ForceShowCursorManagerChromeosTest&) = delete;
  ~ForceShowCursorManagerChromeosTest() override = default;

  // AshTestBase:
  void SetUp() override {
    // Allow debug shortcuts so we can use the accelerator to force showing the
    // cursor.
    base::CommandLine::ForCurrentProcess()->AppendSwitch(
        switches::kForceShowCursor);
    AshTestBase::SetUp();
  }
};

TEST_F(ForceShowCursorManagerChromeosTest, Basic) {
  auto* cursor_manager = Shell::Get()->cursor_manager();
  EXPECT_TRUE(cursor_manager->IsCursorVisible());

  cursor_manager->HideCursor();
  EXPECT_TRUE(cursor_manager->IsCursorVisible());

  Shell::Get()->SetCursorCompositingEnabled(true);
  EXPECT_TRUE(cursor_manager->IsCursorVisible());
}

}  // namespace ash