On 2023-06-03 21:11, Xu Yilun wrote: > On 2023-05-31 at 11:54:04 +0200, Marco Pagani wrote: >> The suite tests the programming of an FPGA Region with a Bridge >> and the function for finding a particular Region. >> >> Signed-off-by: Marco Pagani <marpagan@xxxxxxxxxx> >> --- >> drivers/fpga/tests/fpga-region-test.c | 186 ++++++++++++++++++++++++++ >> 1 file changed, 186 insertions(+) >> create mode 100644 drivers/fpga/tests/fpga-region-test.c [...] > Maybe better just put all tests in one module, and have unified > fake_mgr_ops/mgr_stats/fake_bridge_ops/bridge_stats across all tests. > > In previous thread, I said I'm good to the self-contained test module > but I didn't actually follow the idea. Sorry for that. > > The concern is why in this region test, the write_count and only the > write_count is taken care of. > > Although fpga_mgr_load() test covers all mgr_ops, but does that > means these ops are still good for more complex case like > fpga_region_program_fpga()? And there is no guarantee > fpga_region_program_fpga() would always call mgr_ops the same way > as fpga_mgr_load() in future. > > Similar for fpga_bridge. Maybe a complete setup for fpga_region is > still necessary. I think that putting all tests in a single module (like in previous versions) goes against the principles of unit testing, making the code more similar to an integration test. Unit tests should be focused on a single behavior. The programming test case included in the Region's suite should test only the behavior of the Region itself. Specifically, that fpga_region_program_fpga() calls get_bridges(), to get and control bridges, and then the Manager for the actual programming. The programming sequence itself is outside the responsibilities of the Region, and its correctness is already ensured by the Manager suite. Similarly, the correctness of the Bridge's methods used by the Region for getting and controlling multiple bridges is already ensured by the Bridge test suite. For this reason, the Manager and Bridge fakes used in the Region suite implement only the minimal set of operations necessary to ensure the correctness of the Region's behavior. If I used a "full" Manager (and tested all mgr_ops), then the test case would have become an integration test rather than a unit test for the Region. > BTW: I like the way that fake drivers are removed. Looks much straight > forward. I appreciate that. > Thanks, > Yilun > Thanks, Marco [...]