Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » SWTBot » KeyboardTest & non EN keyboards
KeyboardTest & non EN keyboards [message #526398] Sat, 10 April 2010 11:24 Go to next message
Ralf Ebert is currently offline Ralf EbertFriend
Messages: 168
Registered: July 2009
Senior Member
Hi,

when I run org.eclipse.swtbot.swt.finder.keyboard.AWTKeyboardTest I get
"IllegalArgumentException: keyboard layout MAC_DE not available."

- Is this test supposed to run independent from the system keyboard?

- What are these .keyboard files? The file contents look strange to me, what is this
supposed to do / where is this documented? (couldn't find any hints scanning the JavaDocs)

- When I copy the MAC_EN_US.keyboard to MAC_DE (or just set the swtbot property to use the
en keyboard), most tests fail because of typing wrong characters (f.e. canTypeSingleQuote
types an 'ä' character.

Greetings,

Ralf


--
http://www.ralfebert.de/blog/
http://twitter.com/ralfebert/
Re: KeyboardTest & non EN keyboards [message #526425 is a reply to message #526398] Sat, 10 April 2010 21:17 Go to previous messageGo to next message
Ralf Ebert is currently offline Ralf EbertFriend
Messages: 168
Registered: July 2009
Senior Member
Opened this bug to track this issue:

308735: Support for non-EN keyboards
https://bugs.eclipse.org/bugs/show_bug.cgi?id=308735

--
http://www.ralfebert.de/blog/
http://twitter.com/ralfebert/
Re: KeyboardTest & non EN keyboards [message #526431 is a reply to message #526398] Sat, 10 April 2010 22:54 Go to previous messageGo to next message
Ketan Padegaonkar is currently offline Ketan PadegaonkarFriend
Messages: 873
Registered: July 2009
Senior Member
Keyboard layouts and file formats are documented on the wiki.

Your mileage may vary depending on whether you use the 'swt/awt/mock'
keyboard type you're using, your specific swt version, your jre version
and the specific bugs that are associated with those versions.

http://wiki.eclipse.org/SWTBot/Keyboard_Layouts

– Ketan

On 4/10/10 4:24 AM, Ralf Ebert wrote:
> Hi,
>
> when I run org.eclipse.swtbot.swt.finder.keyboard.AWTKeyboardTest I get
> "IllegalArgumentException: keyboard layout MAC_DE not available."
>
> - Is this test supposed to run independent from the system keyboard?
>
> - What are these .keyboard files? The file contents look strange to me,
> what is this supposed to do / where is this documented? (couldn't find
> any hints scanning the JavaDocs)
>
> - When I copy the MAC_EN_US.keyboard to MAC_DE (or just set the swtbot
> property to use the en keyboard), most tests fail because of typing
> wrong characters (f.e. canTypeSingleQuote types an 'ä' character.
>
> Greetings,
>
> Ralf
>
>
Re: KeyboardTest & non EN keyboards [message #526458 is a reply to message #526431] Sun, 11 April 2010 12:38 Go to previous messageGo to next message
Ralf Ebert is currently offline Ralf EbertFriend
Messages: 168
Registered: July 2009
Senior Member
Hi Ketan,

> Your mileage may vary.

for Cocoa this is strong understatement. I created a MAC_DE layout, but the key events on
Cocoa seem to differ, only some characters work, the events look different etc.

From what I've seen this will require some work. I guess I'll finish the @UIThread thing
for Win/Linux/Carbon first, then address German keyboards on these platforms and than make
the tests run on Cocoa. This is more work than I expected to get SWTBot properly working
for me, I have to spread this on the next weeks somehow.

What I don't understand, why do we test AWT and SWT strategies on all platforms? On which
platforms are both AWT and SWT tests running and working? Shouldn't we try to guess the
best strategy for the running platform and test that this best strategy works? From what I
have seen, under no circumstances both strategies will work on Cocoa.

> http://wiki.eclipse.org/SWTBot/Keyboard_Layouts

thanks for the link, I updated the wiki page from what I've learned along the way and
added all the crumbs of information that I had to gather together by asking, reading
newsposts, bug reports and the code. Would be great if you could proof-read it as I pretty
much turned it upside down.

Greetings,

Ralf


--
http://www.ralfebert.de/blog/
http://twitter.com/ralfebert/
Re: KeyboardTest & non EN keyboards [message #526484 is a reply to message #526458] Sun, 11 April 2010 18:00 Go to previous messageGo to next message
Ketan Padegaonkar is currently offline Ketan PadegaonkarFriend
Messages: 873
Registered: July 2009
Senior Member
On 4/11/10 5:38 AM, Ralf Ebert wrote:
> Hi Ketan,
>
>> Your mileage may vary.

Here's what I know in general, and I may be wrong on some or all of
these statements. Please correct me if I'm wrong.

Keyboard handling done by win32[0] gtk[1] cocoa[2] is done at a very raw
level.

The native keyevents in these windowing systems provide this raw
information to programs using it. This means that when a user presses
'Z', the program gets SHIFT+keyCode and when the user presses 'a', the
program gets keyCode. Converting from these weird keyCodes to a useful
character (printable or non-printable) is done by another translation
layer that handles keyboard layouts.

Things get uglier on keyboards with umlauts on german and french
keyboards and the dreaded ALT_GR key[3] for which SWT has no support for
and the only way out is to fall back to AWT.

SWT(and AWT) does a good attempt at ensuring that these complex
keystrokes work, but they have their own corner cases[4] where they
don't really do what they say they do.

In short, yes this is a messy area for SWTBot to solve, not many people
have solved this problem, and given that each of these systems have
their own weird bugs, it's very difficult to predict which keyboard will
work for a particular user's environment.

The solution for me is to let users choose and even switch keyboard
strategies based on what they are doing. Some of the tests we do at
ThoughtWorks do exactly that – switch the keyboard strategy based on
what os/ws/jdk version it is running on for very specific tests, and set
it back to defaults.

I've spent enough months pondering at swt and awt source code that I'm
convinced there is no other way. I'm however open to ideas on how this
situation could be improved.

– Ketan

[0] - http://msdn.microsoft.com/en-us/library/ms644967(v=VS.85).aspx
[1] -
http://library.gnome.org/devel/gdk/unstable/gdk-Event-Struct ures.html#GdkEventKey
[2] -
http://developer.apple.com/mac/library/documentation/Cocoa/C onceptual/EventOverview/HandlingKeyEvents/HandlingKeyEvents. html#//apple_ref/doc/uid/10000060i-CH7-SW1
[3] - https://bugs.eclipse.org/bugs/show_bug.cgi?id=280824
[4] - https://bugs.eclipse.org/bugs/show_bug.cgi?id=278207
Re: KeyboardTest & non EN keyboards [message #526504 is a reply to message #526484] Mon, 12 April 2010 00:47 Go to previous message
Ralf Ebert is currently offline Ralf EbertFriend
Messages: 168
Registered: July 2009
Senior Member
Hi Ketan,

thanks for clarifying this, I'll see what I can do to improve the support for German
keyboards when I'm through with the @UIThread feature; don't want to start too many things
at once. I more or less stumbled upon this while doing this feature because the tests were
failing.

I'm still wondering, if I understand correctly, both SWT and AWT keyboard tests are
executed as of now. On which platforms are these tests executed? Are the test results for
the different platforms publically available?

Greetings,

Ralf

--
http://www.ralfebert.de/blog/
http://twitter.com/ralfebert/
Previous Topic:SWTBotTreeItem.doubleClick() not posting mouse coordinates
Next Topic:Ant build: A cycle was detected when generating the classpath junit4_x -> swt.finder.test -> j
Goto Forum:
  


Current Time: Fri Apr 26 10:17:48 GMT 2024

Powered by FUDForum. Page generated in 0.03316 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top