~brandontschaefer/nux/remove-gconf-ibus-1.5

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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
 * Copyright 2011 Inalogic Inc.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 3, as published
 * by the  Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * version 3 along with this program.  If not, see
 * <http://www.gnu.org/licenses/>
 *
 * Authored by: Andrea Azzarone <azzaronea@gmail.com>
 *
 */
 
#include "Nux/Nux.h"
#include "Nux/WindowThread.h"
#include "Nux/VLayout.h"
#include "Nux/ProgramFramework/ProgramTemplate.h"
#include "Nux/ProgramFramework/TestView.h"
#include <X11/extensions/XTest.h>
#include <X11/keysym.h> 
#include "nux_automated_test_framework.h"

unsigned int const NUM_VIEWS = 5;
unsigned int const ID_UNFOCUSABLE_VIEW = 1; // Please don't make this the last/first one :)

class VLayoutKeyNavigationTest : public ProgramTemplate
{
public:
  VLayoutKeyNavigationTest(const char* program_name, int window_width, int window_height, int program_life_span);
  ~VLayoutKeyNavigationTest();

  virtual void UserInterfaceSetup();
  
  nux::TestView* CreateView();
  void AddView(nux::TestView* view);
  
  nux::VLayout* vlayout_;
  nux::TestView* views_[NUM_VIEWS];
};

VLayoutKeyNavigationTest::VLayoutKeyNavigationTest(const char* program_name,
                                                   int window_width,
                                                   int window_height,
                                                   int program_life_span)
: ProgramTemplate(program_name, window_width, window_height, program_life_span)
{
}

VLayoutKeyNavigationTest::~VLayoutKeyNavigationTest()
{
}

nux::TestView* VLayoutKeyNavigationTest::CreateView()
{
  nux::TestView* view = new nux::TestView();
  return view;
}

void VLayoutKeyNavigationTest::AddView(nux::TestView* view)
{
  vlayout_->AddView(view, 1);
}

void VLayoutKeyNavigationTest::UserInterfaceSetup()
{  
  vlayout_ = new nux::VLayout(NUX_TRACKER_LOCATION);
  vlayout_->SetPadding(20, 20);
  vlayout_->SetSpaceBetweenChildren(10);
  
  for (unsigned int i=0; i<NUM_VIEWS; ++i)
  {
    views_[i] = CreateView();
    AddView(views_[i]);
  }
  
  views_[ID_UNFOCUSABLE_VIEW]->can_focus_ = false;
  nux::GetWindowCompositor().SetKeyFocusArea(views_[0]);
  
  static_cast<nux::WindowThread*>(window_thread_)->SetLayout(vlayout_);
  
  nux::ColorLayer background(nux::Color(0xFF4D4D4D));
  static_cast<nux::WindowThread*>(window_thread_)->SetWindowBackgroundPaintLayer(&background);
}

VLayoutKeyNavigationTest* key_navigation_test = NULL;

void TestingThread(nux::NThread* /* thread */, void* user_data)
{
  while (key_navigation_test->ReadyToGo() == false)
  {
    nuxDebugMsg("Waiting to start");
    nux::SleepForMilliseconds(300);
  }

  nux::SleepForMilliseconds(1000);

  nux::WindowThread* wnd_thread = static_cast<nux::WindowThread*>(user_data);

  NuxAutomatedTestFramework test(wnd_thread);

  test.Startup();

  // Set the mouse at coordinates (0, 0) (top-left corner) on the display
  test.PutMouseAt(0, 0);

  test.TestReportMsg(key_navigation_test->vlayout_, "TestView created");
  test.TestReportMsg(key_navigation_test->views_[0]->has_focus_, "Top left tile has key focus");
  
  // Down key
  for (unsigned int i=0; i<NUM_VIEWS-1; ++i)
  {
    test.SendFakeKeyEvent(XK_Down, 0);
    nux::SleepForMilliseconds(500);
    test.TestReportMsg(!key_navigation_test->views_[i]->has_focus_, "Down: key focus out");
    if ((i + 1) == ID_UNFOCUSABLE_VIEW)
    {
      test.TestReportMsg(!key_navigation_test->views_[i+1]->has_focus_, "Down: key focus skipped");
      test.TestReportMsg(key_navigation_test->views_[i+2]->has_focus_, "Down: key focus in");
      ++i;
    }
    else
    {
      test.TestReportMsg(key_navigation_test->views_[i+1]->has_focus_, "Down: key focus in");
    }
  }
  
  // Another down key, should do nothing
  test.SendFakeKeyEvent(XK_Down, 0);
  nux::SleepForMilliseconds(500);
  test.TestReportMsg(key_navigation_test->views_[NUM_VIEWS-1]->has_focus_, "Down key, last element");
  
  // Up key
  for (int i=NUM_VIEWS-1; i>0; --i)
  {
    test.SendFakeKeyEvent(XK_Up, 0);
    nux::SleepForMilliseconds(500);
    test.TestReportMsg(!key_navigation_test->views_[i]->has_focus_, "Up: key focus out");
    if ((i - 1) == (int)ID_UNFOCUSABLE_VIEW)
    {
      test.TestReportMsg(!key_navigation_test->views_[i-1]->has_focus_, "Up: key focus skipped");
      test.TestReportMsg(key_navigation_test->views_[i-2]->has_focus_, "Up: key focus in");
      --i;
    }
    else
    {
      test.TestReportMsg(key_navigation_test->views_[i-1]->has_focus_, "Up: key focus in");
    }
  }
  
  // Another up key, should do nothing
  test.SendFakeKeyEvent(XK_Up, 0);
  nux::SleepForMilliseconds(500);
  test.TestReportMsg(key_navigation_test->views_[0]->has_focus_, "Up key, fist element");
  
   // Keft key, should do nothing
  test.SendFakeKeyEvent(XK_Left, 0);
  nux::SleepForMilliseconds(500);
  test.TestReportMsg(key_navigation_test->views_[0]->has_focus_, "Left key");
  
   // Right key, should do nothing
  test.SendFakeKeyEvent(XK_Right, 0);
  nux::SleepForMilliseconds(500);
  test.TestReportMsg(key_navigation_test->views_[0]->has_focus_, "Right key");


  if (test.WhenDoneTerminateProgram())
  {
    nux::SleepForMilliseconds(1000);
    wnd_thread->ExitMainLoop();
  }
  nuxDebugMsg("Exit testing thread");
}

int main()
{
  XInitThreads();

  key_navigation_test = new VLayoutKeyNavigationTest("Key navigation Test", 500, 400, 8000);
  key_navigation_test->Startup();
  key_navigation_test->UserInterfaceSetup();

  nux::SystemThread* test_thread = nux::CreateSystemThread(key_navigation_test->GetWindowThread(), &TestingThread, key_navigation_test->GetWindowThread());

  test_thread->Start(key_navigation_test);

  key_navigation_test->Run();

  delete test_thread;
  delete key_navigation_test;

  return 0;
}