IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How do you perform Parallel Testing in Mainframes?


IBM Mainframe Forums -> Testing & Performance
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vinadha

New User


Joined: 23 Dec 2005
Posts: 4

PostPosted: Sun Nov 19, 2006 3:28 am
Reply with quote

Hi,

Just curious how do you execute Parallel Testing in Testing your programs. Please some one share their experiences wrt Parallel Testing.

Thanks
Vinadha
Back to top
View user's profile Send private message
PeD

Active User


Joined: 26 Nov 2005
Posts: 459
Location: Belgium

PostPosted: Sun Nov 19, 2006 5:28 am
Reply with quote

SIze of project? One program, few programs, a whole application with dozen of programs?

Parallel tests? hhmm
Run 1, save outputs, Run 2 , compare.
Or within two projects ( in the sense of IBM terminology ). run and compare.
Or in two separate OS : run and compare.
Back to top
View user's profile Send private message
DavidatK

Active Member


Joined: 22 Nov 2005
Posts: 700
Location: Troy, Michigan USA

PostPosted: Sun Nov 19, 2006 8:32 am
Reply with quote

Hi vinadha,

vinadha wrote:

Just curious how do you execute Parallel Testing in Testing your programs. Please some one share their experiences wrt Parallel Testing.


I?m going to assume (always gets me into trouble) that you are comparatively new to programming (coding, testing), and take a literary license.

I am used to several degrees of testing.

The most basic testing is the UNIT test, where you prepare input data that will exercise the change(s) you are making to the program. In an ideal situation you will create input test data that will exercise every branch in logic (each IF statement in the program), including exceptions and error conditions. The object of testing, particularly unit testing, is to not only test your program to see if it runs correctly with good input data, but even more so, to see if there is any way you can break the program with bad input data. Run your program with this input data, and justify (explain) each field value in the output data.

The next step is to do a Production Parallel test. In this testing you run with Production input Data, with the Production program, and save the Production output data. Now, with the same Production input Data, run your Test Program, and save the Test output data.

Now the fun part, you get to compare the two sets of output data. Hopefully your shop has a good compare utility. I usually compare the Test output Data with the Production output Data until I have, maybe 10, records that do not match 100%. I look at each field that does not match, and explain why. Is it one of the fields that we expect to be different? This is good. If it is not one of the fields identified in you UNIT test, you need to explain why that field data changed. Your change may have affected another part of the program that you did not anticipate. Now, run the compare utility again, excluding the fields identified in the pervious runs. Continue this cycle until you can run the compare utility (with excluded fields) until all records match.

At this point, you should have a set of fields that the values have changed, due to modifications you made to the program, with explanations for all.

Now, depending on the magnitude of your change, you may have to do one or both of the following.

STRING testing. Set up a small job stream of production programs that are predecessor and successor to your program. Run this small job stream to make sure you can handle the input data from your predecessor, and that your successor can handle your output data.

INTEGRATION testing is a superset of the STRING test, where you may want to run entire applications, or even entire job streams with multiple applications involved. Because of the massive amount of data, you probably will want to identify, in advance of the test, specific records that you expect to change, how they will affect other programs within your application, and programs outside your applications. Run the data and spot check these results in the appropriate jobs.

Fun yes?

Dave
Back to top
View user's profile Send private message
vinadha

New User


Joined: 23 Dec 2005
Posts: 4

PostPosted: Sun Nov 19, 2006 9:07 pm
Reply with quote

Hello Friends,

Thank you so much for a detailed description on Parallel Testing. I was involved mostly with Unit Testing where my programs are tested on the test region and with the test region data as an input. Usually these test regions are updated with the current production data for every fortnight.

Vinadha
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> Testing & Performance

 


Similar Topics
Topic Forum Replies
No new posts SH256/MD5 Checksum in Mainframes JCL JCL & VSAM 14
No new posts Use of Perform Thru Exit COBOL Programming 6
No new posts After hours quick-fix support for IBM... Mainframe Jobs 0
No new posts Related to Unit Testing Testing & Performance 2
No new posts Parallel Sysplex - subprogram execution CICS 7
Search our Forums:

Back to Top