Active Topics Memberlist Calendar Search Help | |
Register Login |
One Stop Testing Forum : Types Of Software Testing @ OneStopTesting : Automated Testing @ OneStopTesting |
Topic: Automated Testing Guidelines |
|
Author | Message |
Piyush
Newbie Joined: 23Feb2007 Online Status: Offline Posts: 1 |
Topic: Automated Testing Guidelines Posted: 23Feb2007 at 11:24am |
It seems to me that a lot of people have been
asking for some guidelines on how to write automated tests. I've done
several tests by now and have found the process to be extremely easy
and useful. It's a joy to work with automated testing once you get the
hang of it.
I just wrote a test script for the acs-service-contract package and thought I'd might as well post a step-by-step run-through, since some people have been asking for this. Here goes. 1. Create the directory that will contain the test script(s): $ cd /web/simon/packages/acs-service-contract/tcl2. Create the .tcl library that holds the test procs: $ cd test3. Write the tests. This is obviously the big step :) The script should first call ad_library like any normal -procs.tcl file: ad_library {To create a test case you call aa_register_case test_case_name .
Once you've created the test case you start writing the needed logic.
Let's say you just wrote an API for adding and deleting notes in the
notes packages and wanted to test that. You'd probably want to write a
test that first creates a note, then verifies that it was inserted,
then perhaps deletes it again, and finally verifies that it is gone. Naturally this means you'll be adding a lot of bogus data to the database, which you're not really interested in having there. To avoid this I usually do two things. I always put all my test code inside a call to aa_run_with_teardown which basically means that all the inserts, deletes, and updates will be rolled back once the test has been executed. A very useful feature. Instead of inserting bogus data like: set name "Simon"I tend to generate a random script in order avoid inserting a value that's already in the database: set name [ad_generate_random_string]Anyway, here's how the test case looks so far: aa_register_case acs_sc_impl_new_from_spec {Now let's look at the actual test code. That's the code that goes inside -testcode {} .
In my case I had added a new column to acs_sc_impls (pretty_name),
which meant that I had to change the datamodel and the Tcl API to
support this new change. To make sure I didn't screw up, I wrote a test
that created a new service contract, then a new implementation of that
contract, and called acs_sc::impl::get to check that the data in the
new column had been added correctly and then finally verified that the
pretty_name was actually what I had tried to insert. It looked
something like this:
set spec {Now you might not know how acs-service-contract works, but that doesn't matter. I'm basically inserting data into the database, then querying for the database to check that it got inserted and then finally, using aa_equals, I compare the result with what I inserted to verify that everything is correct. Post Resume: Click here to Upload your Resume & Apply for Jobs |
|
IP Logged | |
Forum Jump |
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
© Vyom Technosoft Pvt. Ltd. All Rights Reserved.