vote up 2 vote down star

How does one test a method that does some interactions with the local D-Bus (accessing a HAL object)?

Results of tests will differ depending on the system that the test is run on, so I don't know how to provide the method reliable input.

I'm working in Python, by the way.

flag

1 Answer

vote up 1 vote down check

If you can not mock the environment then it's probably impossible for you to write the test. If your access to HAL/D-Bus is via an object and you provide a mock instance to your test then it should be possible to emulate the necessary inputs to your test from the mock implementation.

link|flag
+1 -> I was about to post the same thing; emulate the interface so that you can load the test inputs/responses that you expect and make sure your software responds as it should. – Jon Cage May 7 at 9:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.