Case study – introducing World Wild Travel Club
As we mentioned at the beginning of this chapter, the case study of this book will take you on a journey of creating the software architecture for a travel agency called World Wild Travel Club (WWTravelClub). For this edition, we brought new requirements for the WWTravelClub platform, considering the new scenarios we will cover in the book.
WWTravelClub is a travel agency that was created to change the way people make decisions about their vacations and other trips around the world. To do so, they are developing an online service where every detail of a trip experience will be assisted by a club of experts specifically selected for each destination.
The concept of this platform is that you can be both a visitor and a destination expert at the same time. The more you participate as an expert in a destination, the more points you score. These points can be exchanged for tickets that people buy online using the platform.
The customer came with the following requirements for the platform. It is important to know that, in general, customers do not bring the requirements ready for development. That is why the requirements gathering process is so important:
- Common user view:
- Promotional packages on the home page
- Get a recommendation!
- Search for packages
- Details for each package:
- Buy a package
- Buy a package with a club of experts included
- Comment on your experience
- Ask an expert
- Evaluate an expert
- Register as a common user
- Destination expert view:
- The same view as the common user view
- Answer the questions asking for your destination expertise
- Manage the points you scored by answering questions
- Exchange points for tickets
- Administrator view:
- Manage packages
- Manage common users
- Manage destination experts
To finish this, it is important to note that WWTravelClub intends to have more than 100 destination experts per package and will offer around 1,000 different packages all over the world.
Understanding user needs and system requirements
To summarize the user needs of WWTravelClub, you can read the following user stories:
US_001
: As a common user, I want to view promotional packages on the home page, so that I can easily find my next vacationUS_002
: As a common user, I want to search for packages I cannot find on the home page so that I can explore other trip opportunitiesUS_003
: As a common user, I want to see the details of a package, so that I can decide which package to buyUS_004
: As a common user, I want to register myself, so that I can start buying the packageUS_005
: As a registered user, I want to process the payment, so that I can buy a packageUS_006
: As a registered user, I want to buy a package with an expert recommendation included, so that I can have an exclusive trip experienceUS_007
: As a registered user, I want to ask for an expert, so that I can find out the best things to do on my tripUS_008
: As a registered user, I want to comment on my experience, so that I can give feedback on my tripUS_009
: As a registered user, I want to review an expert who has helped me, so that I can share with others how fantastic he wasUS_010
: As a registered user, I want to register as a destination expert view, so that I can help people who travel to my cityUS_011
: As an expert user, I want to answer questions about my city, so that I can score points to be exchanged in the futureUS_012
: As an expert user, I want to exchange points for tickets, so that I can travel around the world moreUS_013
: As an administrator user, I want to manage packages, so that users can have fantastic opportunities to travelUS_014
: As an administrator user, I want to manage registered users, so that WWTravelClub can guarantee good service qualityUS_015
: As an administrator user, I want to manage expert users, so that all the questions regarding our destinations are answeredUS_016
: As an administrator user, I want to offer more than 1,000 packages around the world, so that different countries can experience the WWTravelClub serviceUS_017
: As the CEO, I want to have more than 1,000 users simultaneously accessing the website, so that the business can scale effectivelyUS_018
: As a user, I want to access WWTravelClub in my native language, so that I can easily understand the package offeredUS_019
: As a user, I want to access WWTravelClub in the Chrome, Firefox, and Edge web browsers, so that I can use the web browser of my preferenceUS_020
: As a user, I want to know my credit card information is stored securely, so I can buy packages safelyUS_021
: As a user, I want to get a recommendation of a good place to visit according to other people from my city, so I can find out about new places that fit my style
Notice that while you start writing the stories, information related to non-functional requirements such as security, environment, performance, and scalability can be included.
However, some system requirements may be omitted when you write user stories and need to be included in the software specification. These requirements can be related to legal aspects, hardware, and software prerequisites, or even points of attention for the correct system delivery. They need to be mapped and listed as well as the user stories. The WWTravelClub system requirements are presented in the following list. Notice that requirements are written in the future because the system does not exist yet:
SR_001
: The system shall use Microsoft Azure components to deliver the scalability requiredSR_002
: The system shall respect General Data Protection Regulation (GDPR) requirementsSR_003
: The system shall run on the Windows, Linux, iOS, and Android platformsSR_004
: Any web page of this system shall respond in at least 2 seconds with 1,000 users accessing it concurrently
The idea of having this list of user stories and system requirements is to help you understand how complex the development of a platform might be if you think about it from an architectural perspective.