This time lets look at the pattern Hidden testable code
Hidden testable code
![]() |
By Loveteamin [CC BY-SA 3.0 (https://creativecommons.org/licenses/by-sa/3.0)], from Wikimedia Commons |
Schematically it looks like this
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hardToTest() { | |
let data = callToDependency() | |
// | |
// pure logic | |
// pure logic | |
// pure logic | |
// | |
let dataOther = callToDependency2(result) | |
} |
Solution: It is very very cheap to fix this. Just an Extract Method automatic refactoring in order to extract a Pure Function that can be extremely easily tested.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hardToTest() { | |
let data = callToDependency() | |
let result = easyToTestPureFunction(data) | |
let dataOther = callToDependency2(result) | |
} | |
function easyToTestPureFunction(data) { | |
// | |
// pure logic | |
// pure logic | |
// pure logic | |
// | |
} |
Recently I came across an example of this bug generator pattern. It had a first bug that was fixed and tests weren't added because it was considered too costly to add tests for it. However the idea of testing an extracted function was not even considered. Two weeks later it became clear that this piece of code contained a second similar bug. The code had some very extensive transformation logic between two calls to a web service and two calls to the persistence layer. Below is a shortened version of it. The problems were both errors in the pure transformation logic.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hardToTest() { | |
let data = requestExternalServer() // hard to test | |
let lang = persistence.get(data.id)) // hard to test | |
// below pure transformation logic | |
let langToUpdate = {}; | |
versionsLangs.map((versionLang) => { | |
let restPath = versionLang.entity.toRestPath(); | |
lang.dates.langsDates.map(datePayload => { | |
if (restPath === datePayload.langRestPath) { | |
langToUpdate[restPath] = langToUpdate[restPath] || {}; | |
langToUpdate[restPath].dates = datePayload.payload.dates; | |
} | |
}); | |
}); | |
// hard to test again | |
return persistence.update(data.id, langToUpdate) | |
} |
Once extracted and thoroughly tested the logic can be both refactored and extended with confidence. Bugs will have a much harder time hiding in this kind of light.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This function needs only one test | |
function hardToTest() { | |
let data = requestExternalServer() | |
let lang = persistence.get(data.id)) | |
let langToUpdate = makeLangToUpdate(lang) | |
return persistence.update(data.id, langToUpdate) | |
} | |
// This functionc can be thouroughly tested | |
function makeLangToUpdate(versionLangs, lang) { | |
let langToUpdate = {}; | |
versionsLangs.map((versionLang) => { | |
let restPath = versionLang.entity.toRestPath(); | |
lang.dates.langsDates.map(datePayload => { | |
if (restPath === datePayload.langRestPath) { | |
langToUpdate[restPath] = langToUpdate[restPath] || {}; | |
langToUpdate[restPath].dates = datePayload.payload.dates; | |
} | |
}); | |
}); | |
} |
The idea that we can cleanse the system from most of the bugs is called BugsZero. You can learn more about it here, and by various talks by Arlo Belshee, available on youtube.
Really nice topics you had discussed above. I am much impressed. Thank you for providing this nice information here
RépondreSupprimerSoftware Testing Company
PS4 Game Tester
Game Testing Services
Video Game Testing Companies
I was very interested in the article , it’s quite inspiring I should admit. I like visiting your site since I always come across interesting articles like this one. Keep sharing! Regards. Read more about
RépondreSupprimerSecurity Testing Services
Test Automation Services
Software Testing Services
Compatibility Testing Services
Regression Testing Services
RépondreSupprimerI hope you continue to provide new ideas for us all and greetings success always for you.
Selenium Training in Chennai | Certification | Online Courses
selenium training in chennai
selenium training in chennai
selenium online training in chennai
selenium training in bangalore
selenium training in hyderabad
selenium training in coimbatore
selenium online training
At this point id verification service is extremely popular amongst individuals. One will acquire a lot of verification methods on a respected platform known as Trust Swiftly, plus all solutions deliver far better security to any online business. If online users make use of this TRUST SWIFTLY website, they get specifics about id verification service.
RépondreSupprimer