Simple question I hope. I have a function that keeps prompting for user input (characters) and returns a character once it finds that the input is valid under certain conditions. I'm writing tests for this and other similar functions, but don't know how to fake user input. By the way, I'm using scanf() to get user input.
feedback
|
|
You can change the behaviour of standard input to read from a file with
| ||||
|
feedback
|
|
If you're on unix or cygwin, you can invoke your executable and ask it to use a text file as stdin. For example:
| |||
|
feedback
|
|
You can do something like
The string of
The file On the other hand you can simply replace the code's input section with some dummy sections. If you have a separate module for input, then replace it with dummy. | |||
|
feedback
|
|
Why not just call the function with a default value? | |||||||
feedback
|
|
This is a very naive solution, but it may do what you want:
| |||
|
feedback
|
|
Move the validation to another function. And test it independently. Or fake the user input refactor the remainder to take in a function pointer that is called back to collect some letters. That should enable a simple fake. I've not written C for a long time but something like could also work
You don't need to test the scanf function, but you could replace it with a fscanf and pass in the stream with the chars like this stdin
| ||||
|
feedback
|