dip_unittest.cc 2.46 KB
Newer Older
1 2 3 4 5 6 7
// Copyright (c) 2012 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 <algorithm>
#include <vector>

8
#include "ash/ash_switches.h"
9
#include "ash/display/display_manager.h"
10
#include "ash/shelf/shelf.h"
11
#include "ash/shelf/shelf_widget.h"
12 13 14 15
#include "ash/shell.h"
#include "ash/test/ash_test_base.h"
#include "ash/wm/window_properties.h"
#include "ash/wm/window_util.h"
16
#include "base/command_line.h"
17 18
#include "base/memory/scoped_ptr.h"
#include "ui/aura/window.h"
19
#include "ui/aura/window_event_dispatcher.h"
20 21 22 23 24
#include "ui/compositor/layer.h"
#include "ui/gfx/display.h"
#include "ui/gfx/insets.h"
#include "ui/gfx/screen.h"
#include "ui/views/widget/widget.h"
25 26 27
#include "ui/wm/core/shadow.h"
#include "ui/wm/core/shadow_controller.h"
#include "ui/wm/core/shadow_types.h"
28
#include "ui/wm/public/activation_client.h"
29 30 31 32 33 34

namespace ash {

typedef ash::test::AshTestBase DIPTest;

// Test if the WM sets correct work area under different density.
35 36
TEST_F(DIPTest, WorkArea) {
  UpdateDisplay("1000x900*1.0f");
37

38
  aura::Window* root = Shell::GetPrimaryRootWindow();
39 40 41 42 43 44 45 46 47 48 49 50
  const gfx::Display display =
      Shell::GetScreen()->GetDisplayNearestWindow(root);

  EXPECT_EQ("0,0 1000x900", display.bounds().ToString());
  gfx::Rect work_area = display.work_area();
  EXPECT_EQ("0,0 1000x853", work_area.ToString());
  EXPECT_EQ("0,0,47,0", display.bounds().InsetsFrom(work_area).ToString());

  UpdateDisplay("2000x1800*2.0f");
  gfx::Screen* screen = Shell::GetScreen();

  const gfx::Display display_2x = screen->GetDisplayNearestWindow(root);
51
  const DisplayInfo display_info_2x =
52 53 54 55
      Shell::GetInstance()->display_manager()->GetDisplayInfo(display_2x.id());

  // The |bounds_in_pixel()| should report bounds in pixel coordinate.
  EXPECT_EQ("1,1 2000x1800",
56
            display_info_2x.bounds_in_native().ToString());
57 58 59 60 61 62 63 64

  // Aura and views coordinates are in DIP, so they their bounds do not change.
  EXPECT_EQ("0,0 1000x900", display_2x.bounds().ToString());
  work_area = display_2x.work_area();
  EXPECT_EQ("0,0 1000x853", work_area.ToString());
  EXPECT_EQ("0,0,47,0", display_2x.bounds().InsetsFrom(work_area).ToString());

  // Sanity check if the workarea's inset hight is same as
65 66
  // the shelf's height.
  Shelf* shelf = Shelf::ForPrimaryDisplay();
67 68
  EXPECT_EQ(
      display_2x.bounds().InsetsFrom(work_area).height(),
69
      shelf->shelf_widget()->GetNativeView()->layer()->bounds().height());
70 71
}

72
}  // namespace ash