Export/import feature wrong design issue

credit: wikipedia.org
TLDR
In this post I will give an example for wrong design issue of export/import feature with the advocacy why is this an issue.

In order to prepare test data for performance test, I created test data using web application on test environment. This environment was used to check does performance grinder script works as expected. As web application had export/import feature, my plan was to export test data from test environment, and import them to production environment. My heuristic was that export/import feature was implemented as inverse function [wikipedia source].

But that heuristic failed. I needed to edit exported files in order to be able to import data back again in the application using import feature. Using HICCUPPS [Bolton as source] consistency analysis, this is an issue because:


So, If you find that export/import feature is not inverse function, you should raise that as an issue using HICCUPPS analysis as advocacy for this bug.

Labels: