Big Data Testing – Understanding the complex world of Data Testing Strategy

data-testing-strategy.jpg

With the advancement in technology, a massive amount of data is collected every second. Big data is a buzzword that is used by huge companies who have an enormous amount of data to handle. Companies find a hard time in managing a plethora of information collected. There are significant challenges faced by organisations in end-to-end … Read more

Code Review Process: Best Practices

Code-Review-Process_Best-Practices

Systems that work heavily on coding applications are often overwrought with lines and paragraphs of syntactical and contextual language that can be tough to understand to the average pair of eyes.

Even more cumbersome and tiring is the process of debugging and looking for errors in the source code whenever some pesky errors arrive, or the results don’t match the expected output.

As technology undergoes an upheaval in the techniques and ideas used to uphold the tenants of advancement, so do the methods that are used to ensure that there is no room for errors and other discrepancies. Over the shoulder review Process

The code review process also referred to as peer review, stands out as a tried and tested method in a large palette of applications to allow for the systematic examination of software source code. It’s conducted to find bugs and improve the overall quality of the software.

The Roles Found In Code Review Process

There are at least two roles that are always present in a code review:-

  • The author, who is responsible for creating the code being reviewed
  • The reviewer, who is the person responsible for examining the code and reporting the results to the author.

The code review process can occur over a large network of programmers and debuggers or can be a shared task among a small group of developers. Often there is a particular platform or methodology(such as Agile) that runs in the background to ensure that the process yields reasonable results.

code review process

Examples Of Lightweight Techniques

  • Over-the-shoulder
    • One developer looks over the author’s shoulder as the latter runs through the code and suggests changes to be made.
    • This method is more appropriate when dealing with short snippets, and extreme accuracy is required regarding the results.
  • Email pass-around
    • As the name suggests, the author or the SCM system creates a hierarchical system and emails code to reviewers.
  • Pair Programming
    • Two authors develop the source code together at the same workstation and reverse engineer the results with the assumption that they would arrive at the same base kernels.
  • Tool-assisted
    • Obvious to the name, this means that authors and reviewers use specialised tools designed for peer code review.

[hubspot type=form portal=3432998 id=43c818e9-ba9d-4a5e-a027-8bf8aa4b4481]

Why The Code Review Process Matters

It’s a rather common question to come across. Why bother reviewing code? The benefits or the goals of the code review process well range in the following reasons:-

Why Code Review Process Matters
  • Debugging
    • Finding bugs early before the deployment stage can save both time and money especially when they are at a stage when they are cheap to fix.
  • Coding Standards Compliance
    • Code review helps to maintain consistent coding style across all company applications and respond faster to errors when any situations arise.
  • Proliferating Knowledge
    • During the code review process, team members gain a better understanding of the code base and learn from each other while also correcting and edifying each other.
  • Consistent Design And Implementation
    • A peer review process conducted with the objective to debug code helps to maintain a level of consistency in software design and implementation.
  • Higher Software Security
    • Applications that require a high level of security are hugely benefited from targeted security reviews.
  • Team Cohesion
    • Review discussions also save team members from isolation and equip them with a greater knowledge of each other’s skill-sets and weaknesses, becoming more responsive to greater issues and discrepancies.
Code Reviews
Source:- https://www.slideshare.net
  • Confidence Of Stakeholders
    • Code review helps develop confidence in stakeholders about the technical quality of the execution of the project while also projecting a more refined image of the team in general.
Ranked Motivation from Developers
Source:- https://codeclimate.com

The Basics Of The Code Review Process

Defect Prevention Cycle
  • Review Less Than 400 Lines Of Code
    • According to a SmartBear study of a Cisco Systems programming team, the developers should review no more than 200 to 400 lines of code (LOC) at a time citing that the brain can only effectively process so much information at a time.
    • Say if a team decides to go beyond the 400 LOC limit, the ability to find defects is highly affected.
    • Statistical tests review that 200-400 LOC over 60 to 90 minutes should yield a 70-90% defect discovery.
  • Take your Time And Plan Accordingly
    • It can be an intrusive thought to jump through the code and hope to find errors that perhaps someone could find as well in the next chain.
    • This does, however, produce a drop in defect density at rates faster than 500 LOC per hour. Code reviews in a reasonable quantity that occur at a slower pace for a limited amount of time results in the most effective code review.
  • Keep A Time Limit Of 60 Minutes
    • Performance tends to suffer in a usual code review process after about 60 minutes. Studies show that taking breaks from a task over a period help maintain the flow of work without sacrificing much of it=s quality.
    • Conducting more frequent reviews should reduce the requirement to conduct a review of this length.
  • Set Goals And Capture Metrics
    • Decide on how you will measure the effectiveness of peer review and name a few tangible goals.
    • Use the SMART criteria and start with external metrics. This is done to give you a quantifiable picture of how your code is improving.
  • Lookout For The Key Metrics
    • Keep a close watch on internal process metrics such as inspection rate- the speed with which a review is performed., defect rate- the number of bugs identified per hour of review, defect density- the average number of bugs per line of code.
  • Authors Should Annotate
    • Even before the review is initiated, authors should annotate code showing which files to look at first and to justify every source code modification.
    • Annotations should be directed at other reviewers to simplify and provide more context to the process.
  • Use Code Review Checklists
    • Omissions can be the hardest defects to find because it´s difficult to review something that isn´t there.
    • Checklists help eliminate frequently made errors and deal with the challenges of omission finding.
    • Code review checklists also help members clear expectations for each type of review and can be helpful to find errors for reporting and process improvement purposes.
  • Immediately Fix Defects Found
    • It’s common for many teams to lack a systematic method for fixing the bugs that they´ve worked so hard to find.
    • Always use a collaborative code review tool that allows debuggers to log bugs, discuss them with the author, and make approved code changes.
  • Exploit And Use Collective Consciousness
    • The knowledge that others use to drive out errors and create better products is well contagious in the workplace.
    • Such an “ego effect” provokes developers to write cleaner code because their peers will certainly see it. Spot checking, for example, produced 20% to 33% of lower defect density with minimal time expenditure
Why code review is important(infographics)

Read more

Postman Tutorial for Automation : All you need to know

Postman-Tutorial-for-Automation-All-you-need-to-know

This step by step guide is a detailed documentation on Postman Tutorial for Automation. It will run you through all the steps that you would require to Automate API testing using Postman. Right from downloading Postman from Chrome to testing it for Automation. Why Automation and Postman? Automation is the new norm across sectors. Automation, … Read more

How to start with Cucumber Automation ?

This blog will help you understand, how we can introduce automation to our daily QA processes for executing repeating test cases with an example. A little insight into Automation with Cucumber : Automation is a widely used term. But knowing its application at the right place for the right purpose, makes it effective and saves … Read more