Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Web Services Testing with soapUI
Web Services Testing with soapUI

Web Services Testing with soapUI: Starting with an overview of SOA and web services testing, this guide take you through a number of hands-on exercises and projects to get you familiar with soapUI. A sure way to raise the quality of your web services.

eBook
€22.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Web Services Testing with soapUI

Chapter 2. The Sample Project

In this book, we follow a hands-on approach for learning web services testing with soapUI. We strongly recommend you to have your computer with you while reading the book and try out the test scenarios which will be described throughout this book.

In this chapter, we will be covering the following topics:

  • Getting the project environment ready

  • Designing the web services

  • Implementing the web services

  • Deploying the web services

As the first step of hands-on learning, we will introduce a sample project in this chapter. Our objective is to build a simple yet comprehensive project which covers the considerable amount of features related to web services testing. We will design and build a sample project with a few web services. We start from scratch, following the code-first web service development approach where we write Java classes first and then deploy them in a web service container.

Tip

There are two ways of developing web services; contract-first and code-first approaches...

The problem domain


Our project will be based on a hypothetical Hotel Reservation System, which is targeted for use by an administrative staff of a hotel. The system consists of three basic functions as follows:

  1. Guest management

  2. Room management

  3. Reservation management

Let's look at the high level architecture of the sample hotel reservation application that we are going to discuss in this chapter:

The hotel reservation system comprises of three fundamental entities; Guest, Room, and Reservation. Each guest is identified by name, address, and age. The rooms are identified by room number, room type, and room size. A room reservation is done by assigning a guest to a room.

We are not going to make our project too complicated since our focus is to derive a set of web services for testing with soapUI in the next chapters. Therefore, we deliberately omit some interrelationships between these entities. For example, we assume that a guest can do only one reservation at a time.

Project pre-requisites


Before starting to implement the project, let's make the project environment ready.

Java

We are going to develop the sample project using Java. Therefore, make sure to install JDK1.6 or later version in your machine.

Apache Ant

We will be using Apache Ant to build our project. Of course, you may use any build tool you prefer.

You can download the latest version of Apache Ant from http://ant.apache.org/bindownload.cgi and follow the installation guide to set up Ant on your machine.

MySQL

MySQL will be used as the database management system in our sample project. All data used in sample hotel reservation system will be stored in a MySQL database. Therefore, we should set up MySQL in our machines. We can download MySQL from http://www.mysql.com/downloads/mysql/ and follow the instructions given in the installation guide to set it up on your machine.

Setting up Apache Axis2

There are numerous web service frameworks which can be used in web services development and deployment...

Designing the web services


Our sample hotel reservation system is implemented using SOAP-based web services. As per the three basic entities used in the system, we can plan to have three web services explained as follows:

  • GuestManagementService:

    GuestManagementService will be used to add, delete, or retrieve the details of guests in system. This web service consists of the following methods:

    • addGuest (name, address, age)

    • getGuestDetails (name)

    • deleteGuest (name)

  • RoomManagementService:

    Adding, deleting, and retrieving the details of rooms are managed by the RoomManagementService which includes the following methods:

    • addRoom (roomNumber, roomType, roomSize)

    • getRoomDetails (roomNumber)

    • deleteRoom (roomNumber)

  • ReservationService:

    ReservationService is used to manage the room reservations of the system, such as creating a new reservation, finding out the reservation details of a particular room, and removing an existing reservation. The following methods are included in this web service:

    • addReservation...

Implementing the web services


As we have seen under Designing the web services section, we are going to use three different web services to handle the guest, room, and reservation management functions. We have also discussed that three MySQL tables are used to store information in each of these web services. Let's put together all these elements and start to implement our system.

First, we should define the guest, room, and reservation Java beans which are used as data transferring objects in our system.

The complete source of all Java bean classes can be found at src\com\sample\reservation\dto folder of the code bundle.

  • Guest.java:

    Guest.java is a Java bean which represents a guest entity in our system. The class consists of the name, address, and age variables as well as their corresponding getter/setter methods.

     package com.sample.reservation.dto;
    
    public class Guest {
    
        private String name;
        private String address;
        private int age;
    
        public Guest(String name, String address...

Deploying web services


Though we developed all the Java classes included in our sample hotel reservation system, we have not made them web services yet. In other words, still, our three web service implementation classes cannot be invoked by a web service client, such as soapUI. In this section, we make a deployable artifact so that we can deploy the services in a service container such as Apache Axis2.

There are multiple ways of deploying a web service in the Apache Axis2 SOAP engine. We will use the service archive-based deployment mechanism where we create a deployable archive with all service artifacts and copy that into the Axis2 server's deployment folder. In this mechanism, the deployable artifact is known as an Axis2 Archive (aar).

In order to deploy an Axis2 service as an aar file, a deployment descriptor should be included with it. The Axis2 deployment descriptor is known as services.xml and must be placed inside the META-INF folder of the aar file. The services.xml tells the Axis2...

Summary


We dedicated this chapter to create a sample project, which used a few web services to implement a simple hotel room reservation system. We started from scratch and created three Plain Old Java Objects (POJOs). Then we exposed them as web services by deploying in Apache Axis2. These three web services, namely GuestManagementService, RoomManagementService, and ReservationService will be used throughout this book. All our discussions of soapUI will be based on these services. Hence, even if you did not follow the sample project, it is advisable to download WebServicesSample-Deliverable.zip from http://www.PacktPub.com/support, follow the instructions given in README.txt to deploy HotelReservation.aar on Apache Axis2, and get the services ready to try out the soapUI samples which we will discuss in the next chapters.

Left arrow icon Right arrow icon

Key benefits

  • Become more proficient in testing web services included in your service-oriented solutions
  • Find, analyze, reproduce bugs effectively by adhering to best web service testing approaches
  • Learn with clear step-by-step instructions and hands-on examples on various topics related to web services testing using soapUI

Description

Quality is a key to success of service-oriented projects. Utilization of proper tools is important to the outcome of web service testing methodology. Being the leading open source web services testing tool, soapUI helps to build robust and flexible automated tests in a productive manner. "Web Services Testing with soapUI" guides you on adopting best web service testing mechanisms with the industry leading open source testing tool, soapUI. You will learn to use soapUI effectively in testing service-oriented solutions focusing on testing functional as well as non-functional characteristics of web services. SoapUI is capable of testing JDBC data sources, web applications, RESTful services and web services exposed over transports such as JMS. The book discusses all these features and much more, in detail, through practical and clear examples. This book is focused on learning soapUI in order to test web services in an effective manner. It starts with a general introduction to service-oriented architecture (SOA) followed by testing aspects of service-oriented solutions. This book aims to give readers a comprehensive overview of usage of soapUI in SOA and web services testing projects. Starting with an overview of SOA and web services testing, you will quickly get your hands dirty with a sample project which makes use of open source web service engine, Apache Axis2. All demonstrations and hands-on exercises are based on this sample project. The tests in a soapUI project are organized into TestSuites, TestCases and TestSteps. You will also learn how soapUI can be used for both functional and non-functional testing. The book then teaches how by using groovy scripting and integrating with Junit and maven, soapUI can easily be used in automated web services testing. By the end, you'llhave learned to test functional and non-functional aspects of web services and automate by integrating into continuous build systems using soapUI.

Who is this book for?

This book directly targets software quality assurance professionals, software project managers, and software developers interested in automated or manual testing web services and SOA. Whether you are a seasoned SOA professional or a novice user, with this book you'll learn to effectively use soapUI in testing service-oriented solutions for functional as well as non-functional web services.

What you will learn

  • Build a simple application based on web services which are deployed on Apache Axis2
  • Identify performance bottlenecks of service-oriented solutions
  • Invoke web services developed as part of a sample project using soapUI
  • Extend the sample soapUI project with TestSuites, TestCases and TestSteps
  • Validate the responses using various assertions, and use of soapUI properties in tests
  • Simulate web services with soapUI, use of static and dynamic responses
  • Test web services configured with WS- policies (WS-Security, WS-Addressing)
  • Test JDBC datasources and services exposed over JMS and integrate soapUI with maven and Junit

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 26, 2012
Length: 332 pages
Edition : 1st
Language : English
ISBN-13 : 9781849515672
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Oct 26, 2012
Length: 332 pages
Edition : 1st
Language : English
ISBN-13 : 9781849515672
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 116.97
Selenium Testing Tools Cookbook
€37.99
Web Services Testing with soapUI
€41.99
SoapUI Cookbook
€36.99
Total 116.97 Stars icon
Banner background image

Table of Contents

13 Chapters
Web Services Testing and soapUI Chevron down icon Chevron up icon
The Sample Project Chevron down icon Chevron up icon
First Steps with soapUI and Projects Chevron down icon Chevron up icon
Working with Your First TestSuite Chevron down icon Chevron up icon
Load and Performance Testing with soapUI Chevron down icon Chevron up icon
Web Service Simulation with soapUI Chevron down icon Chevron up icon
Advanced Functional Testing with soapUI Chevron down icon Chevron up icon
Getting Started with REST Testing Chevron down icon Chevron up icon
Testing Databases with soapUI Chevron down icon Chevron up icon
JMS Testing with soapUI Chevron down icon Chevron up icon
Extending soapUI with Scripting Chevron down icon Chevron up icon
Automated Testing with soapUI Chevron down icon Chevron up icon
Miscellaneous Topics Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.5
(19 Ratings)
5 star 26.3%
4 star 31.6%
3 star 26.3%
2 star 0%
1 star 15.8%
Filter icon Filter
Top Reviews

Filter reviews by




Karel H. Mar 22, 2013
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book is a very efficient guide to using soapUI. It introduces all the soapUI functions and provides a thorough explanation.There's also a user guide on soapUI website, but this book is much better organized and easier to understand.The book is a very good choice both for beginners and those who want to explore soapUI in more detail.
Amazon Verified review Amazon
Afkham Azeez Oct 17, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Excellent book! The author's real world experience in testing enterprise grade middleware products adds to the quality.
Amazon Verified review Amazon
PS Dec 01, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a very well written book on the subject. Covers everything in detail in a step by step manner.
Amazon Verified review Amazon
Vamshi Krishna Aug 12, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Recommended to EveryOne
Amazon Verified review Amazon
Rahul Sinha Sep 22, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
In depth content, well defined & explained.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.