Inspection Story
π Catching Issues Earlyβ
In software development, every product follows a structured Continuous Integration and Continuous Deployment (CICD) pipeline. From initial problem definition to final deployment, code moves through multiple stages, ensuring quality and reliability.
π Where do most issues originate?β
If we look at the CICD pipeline, three critical areas often determine a project's success or failure:
-
β Problem Definition:
- Are we solving the right problem?
- Are we missing key details that could cause misunderstandings later?
-
β Requirements Analysis:
- Are the requirements clear, complete, and unambiguous?
- Do they properly define what the system should do?
-
β Local Development:
- Is the design structured properly?
- Does the source code follow best practices and avoid early defects?
These three areasβProblem, Requirements, and Local Developmentβare where inspection plays a key role. By analyzing requirements, reviewing design, and inspecting source code, we can catch defects early, preventing costly errors later in the pipeline.
π Why is Inspection Important?β
Unlike testing, which focuses on running the software, inspection is a structured review process that helps detect issues before execution. It applies to:
πΉ Requirements Inspection: Ensure clarity and consistency.
πΉ Design Inspection: Review architecture, logic, and flow.
πΉ Code Inspection: Find syntax issues, bad practices, and logical errors.
By focusing on these areas, we reduce the risk of defects propagating through the CICD pipeline, ensuring a strong foundation for development.
β The Problem: Prehistoric Traffic Chaos!β
The Stone Age people have just invented their very first stone carβa groundbreaking achievement! ππ¨ However, thereβs a problemβ¦ they are terrible drivers! π¦΄π₯
Before they take their rocky wheels onto the prehistoric roads, they need a way to train safely, avoid disasters, and master the art of driving. Without proper preparation, the roads will be filled with crashes, confusion, and runaway stone cars.
The Tribe Chiefs (the Clients) quickly identified this gapβthey saw the chaos coming and realized it was time to evolve. To ensure a safer future, they decided to find a structured solution to train new drivers before they hit the road.
πͺ¨ The Rock of Requirementsβ
The Tribe Chiefs gathered around the legendary Rock of Requirements to write their statement.
This was more than just a stone! It was the foundation of every great idea. ποΈ
Whenever the tribe had a new concept or invention, they would engrave it into the sacred rock, believing that once written, their ideas will be closer to became reality.
But things did not go as plannedβ¦
β Bad Requirementsβ
β Issue #1: Confusing Requirementsβ
The requirements:
βA cool simulation of a vehicle that can do stuff like steer, βgo wrummm,β and be safe.β
It was total gibberish! The requirements were:
- vague
- ambiguous
- open to interpretation
- without clear definitions
β Issue #2: Superficial Developersβ
The tribe decided to hire a group of overselling monkey developers ππΌ. These so-called "experts" never questioned the requirementsβ! They just took them for granted and immediately started the next steps!
- No requirement validation before development.
- The developers never challenged unclear requirements.
- Assumptions were made without proper discussions or clarifications.
β Bad Designβ
After receiving the poorly written requirements, the overselling monkey developers swung into action. But there was a slight problem...
They completely misunderstood what the tribe actually wanted!
Instead of designing a car simulator for the prehistoric roads, they somehow concluded that the tribe needed a submarine simulator. ππ’
- The requirements simply said:
βA cool simulation of a vehicle that can do stuff like steer, βgo wrummm,β and be safe.β
-
The monkeys thought:
- βSteer?β β Submarines steer! β
- βGo wrummm?β β Submarines make noise! β
- βBe safe?β β Submarines are built to survive underwater! β
-
Conclusion? - They proudly designed a submarine. ππ
-
No Requirement Validation
-
Over-Engineering the Wrong Problem
β Bad Codeβ
The monkey developers took their flawed design and blindly coded it.
- No validation, just assumptions.
- No testing, just "if it compiles, ship it!"
- No integration, just dumping components on a stick πͺ΅ and handing it off.
β Bad Productβ
Without inspection and testing, the clients got:
- A submarine simulator when they actually required a car simulator ποΈπ’
- A useless, time-consuming, expensive, broken mess!
- A bad product.
β Good Requirementsβ
Structured Dev Teamβ
Realizing their past mistakes, the tribe hires professional Stone++ development team to fix the mess:
- Buga π οΈ β Developer
- Bambucea π β Tester
Inspecting the Requirementsβ
Using their Requirements Phase Defects Checklist, they carefully review the original requirement:
Original Requirement:
"We want a cool simulation of a vehicle that can do stuff like steer, βgo wrummm,β be safe."
π RequirementsPhaseDefectsChecklist.pdf: Potential issuesβ
Code | Defect Description |
---|---|
D_01 | Requirements are incomplete. |
D_02 | Requirements are missing. |
D_03 | Requirements are incorrect. |
D_04 | Initialization of the system state has not been considered. |
D_05 | The functions have not been defined adequately. |
D_06 | The user needs are inadequately stated. |
D_07 | Comments |
π ReviewForm.doc: Identified Issuesβ
Crt. No. | Checked Item | Issue | Suggestion |
---|---|---|---|
1 | D_01 β Incomplete | "Vehicle" is vague | Specify CAR |
2 | D_05 β Functions not defined | "Go wrummm" unclear | Define acceleration |
3 | D_06 β User needs unclear | "Be safe" is ambiguous | Add seat-belt requirement |
Refined Requirementsβ
With clear, testable requirements, they discussed these points with the clients before proceeding further, and they refined the requirements together:
"A simulation of a CAR that:
- Allows steering
- Can accelerate
- Has a seat-belt
β Good Designβ
After fixing the requirements, the Stone++ development team moves on to design. However, they discover a major flawβthe previous team designed a submarine instead of a car! ππ€¦
π DesignPhaseDefectsChecklist.pdf: Potential issuesβ
Code | Defect Description |
---|---|
D_01 | Is the overall architecture clear and structured? |
D_02 | Does the design cover all requirements? |
D_03 | Is error handling properly planned? |
D_04 | Have classic design patterns been considered? |
D_05 | Are class names/descriptions meaningful? |
D_06 | Can the architecture handle likely changes? |
D_07 | Comments |
π ReviewForm.doc: Identified Issuesβ
Crt. No. | Checked Item | Issue | Suggestion |
---|---|---|---|
1 | D_02 β Missing coverage | Design is for a submarine, not a car | Redo design for a car |
2 | D_05 β Poor naming | Components named like "Periscope" | Use car-related terminology |
3 | D_06 β No flexibility | Hardcoded underwater mechanics | Make modular for different vehicles |
Refined Designβ
With a clear architecture and proper structure, the team finally designs a car simulator, ensuring it follows the actual requirements.
β Good Codeβ
With a proper design in place, the Stone++ team (Buga & Bambucea) start pair programming inside Bugaβs Stone PC. They find a mess of submarine codeβuncompilable, full of logic errors, and completely unusable! π¨π
π CodingPhaseDefectsChecklist.pdf: Potential Issuesβ
Code | Defect Description |
---|---|
D_01 | Decision logic or sequencing is erroneous |
D_02 | Branching is incorrect |
D_03 | Undefined loop terminations |
D_04 | Input/output format errors |
D_05 | Subprogram calls are violated |
D_06 | Confusing use of parameters |
D_07 | Comments |
π ReviewForm.doc: Identified Issuesβ
Crt. No. | Checked Item | Issue | Suggestion |
---|---|---|---|
1 | D_01 β Bad logic | Wheels turning like propellers | Fix movement logic for land travel |
2 | D_02 β Wrong branching | "If underwater, reduce speed" condition | Remove submarine logic |
3 | D_06 β Confusing parameters | "Depth" used instead of "Speed" | Rename variables properly |
Refactored Codeβ
The team modifies and refactors the code, removing submarine logic, fixing errors, and making it functional for a car simulator. Now, it compiles, runs properly, and meets the original requirements! π
β Good Productβ
Unlike the monkey developers, Buga & Bambucea didnβt rush to hand over the product. They knew that more rigorous testing was crucial before release.
- π Extensive testing to ensure functionality
- π Fixing last-minute defects