vote up 2 vote down star
1

Our product includes some custom hardware, that connects to a PC via USB. We've started looking into automatic testing, but so far I'm unable to find a tool that can record/replay generic USB input.

Does anyone know of such a tool?
(And - it would be best if it's somehow scriptable - testing would have to alternate between GUI interaction and custom hardware manipulation)

flag

80% accept rate
1  
As an aside, you would be well off using dependency injection and an isolation (mocking) framework to test the remainder of your application. Definitely integration-test the USB classes, but do so separately from testing the rest of your classes. – TrueWill Sep 9 at 2:59

4 Answers

vote up 1 vote down check

Hardware solution,

Do you want to generate USB traffic. It's long since I used it, but the CATC protocol analyzer can also generate traffic. http://www.lecroy.com/tm/products/ProtocolAnalyzers/usbtt.asp?menuid=67 And off course, you can write scripts to generate these traffic ...

Software solution,

Write your own application to send packets to the USB bus driver, and also check the usbview (shipped with Windows DDK) source code. You can send data directly to any USB pipe. This is less expensive, but a bit difficult than the hardware solution ...

HTH

link|flag
Thanks! I'll dig into it. – Ofek Shilon Sep 10 at 7:20
vote up 1 vote down

I don't know if any USB analyzers have option for replay they have for sure option for record. Right now I can think of only LeCroy but there are others companies that make USB analyzers. But they cost similar, LeCroy would be rather top price. Here you should get fair comparison of USB analyzers and their price. www.osronline.com/article.cfm?id=533 (have to register to see article)

link|flag
Chris - can you give an example USB analyzer? – Ofek Shilon Sep 9 at 10:50
vote up 1 vote down

You can develop a simple program using Usblib. Its easy to use.

link|flag
Thanks, but that's exactly what I hope to bypass... – Ofek Shilon Sep 6 at 19:45
vote up 1 vote down

There are a couple of test tools on the usb.org tools page, not sure if that's what you need.

link|flag
Thanks, but seems these are all USB protocol-conformance testing tools. – Ofek Shilon Sep 5 at 19:36

Your Answer

Get an OpenID
or

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