One of my projects I am developing is a Keyboard hook that traps some of the higher numbered function buttons (f13-f20). The tablet this will work on has buttons on it that are mapped to those higher function buttons. So any who I am making a class that has as its constructor input a Key (from System.Windows.Forms.Keys) and a AbstractTask. Since the use hook will perform various tasks I decided this would be a slick way of doing. One of the Tasks is a KeyboardTask. super simple class (I hope atleast)
public class KeyboardTask : AbstractTask
{
private KeyboardTask ()
{ }
public KeyboardTask (KeyboardCommand key)
{
Options = "{" + key + "}";
}
public override void PerformTask()
{
Globals.WriteLog("KeyboardTask:PerformTask()+");
try
{
System.Windows.Forms.SendKeys.Send(Options);
}
catch (System.Exception ex)
{
Globals.WriteExceptionLog(ex);
}
Globals.WriteLog("KeyboardTask:PerformTask()-");
}
}
public enum KeyboardCommand
{
BACKSPACE,//{BACKSPACE}, {BS}, or {BKSP}
BREAK,//{BREAK}
CAPSLOCK,//{CAPSLOCK}
DELETE,//{DELETE} or {DEL}
DOWN, //{DOWN}
END,//{END}
ENTER,//{ENTER}or ~
ESC,//{ESC}
//etc
}
So as a non-unit-test I compiled my program with this added to it
ksel1 = new KeyboardSystemEventListener((Keys.F13), new KeyboardTask(KeyboardCommand.F1));//F1
ksel6 = new KeyboardSystemEventListener((Keys.F18), new ECTask(EmbeddedControllerCommand.DecreaseBackLight));//RB
(there is a HUGE bug doing it this way, but that is already solved i just have to implement it) I put the program on my tablet, and I had IE open, pressed the F13 button and it opened IE's Help (YEAH!).. i pressed the F18 and the backlight decreased.. (no big suprise there)
so then I got to thinking.. there has to be a better way of doing (what I should have said is, why didn't I write my unit test first) So i started to write my unit test.. Problem is I don't have a F13 key.. ok not a huge deal i'll just change it to say my Home button on my keyboard, but then I tried to check for F1 and realized I have no clue how to do that with a Unit test. What i would prefer to see is something like this instead (take me out of the equation)
[Test]
public void TestKeyboardTask()
{
KeyboardTask kkt = new KeyboardTask(KeyboardCommand.F1);
kkt.PerformTask();
Assert.IsTrue(/*F1 key was pressed*/false);
}
any ideas? I'm using NUnit 2.6.2 and Visual studio 2012 pro. I prefer to use NUnit as the VS test suite doesn't seem as refined (althoough would be a billion times more conveniant if it worked)