Mocking Saas Cloud for Testing

Total Page:16

File Type:pdf, Size:1020Kb

Mocking Saas Cloud for Testing DEGREE PROJECT FOR MASTER OF SCIENCE IN ENGINEERING GAME AND SOFTWARE ENGINEERING Mocking SaaS Cloud for Testing Johannes Henriksson | Simon Svensgård Blekinge Institute of Technology, Karlskrona, Sweden, 2017 Supervisor: Mikael Svahnberg, Department of Software Engineering, BTH Abstract In this paper we evaluate how software testing is affected by the usage of a mock-object, a dummy implementation of a real object, in place of having data in a cloud that is accessed through an API. We define the problems for testing that having data in the cloud brings, which of these problems a mock-object can remedy and what problems there are with testing using the mock-object. We also evaluate if testing using the mock-object can find the same faults as testing against the cloud and if the same code can be covered by the tests. This is done at Blekinge Institute of Technology(BTH) by creating an integration system for the company Cybercom Sweden and Karlskrona Municipality. This integration system is made in C] and works by syncing schedules from Novaschem to a cloud service, Google Calendar. With this paper we show that a mock-object in place of a cloud is very useful for testing when it comes to clean-up, triggering certain states and to avoid query limitations. Keywords: Mock-Object, Cloud Computing, Testing, Test-Evaluation i Sammanfattning I detta arbete utvärderar vi hur programvarutestning påverkas av användandet av ett mock-objekt, en dummy-implementation av ett riktigt objekt, istället för att ha data i ett moln som man kommer åt via ett API. Vi definierar de problem som uppkommer av att ha data i molnet, vilka problem som kan avhjälpas av mock-objektet och vilka problem mock-objektet medför. Vi utvärderar även om testning med ett mock-objekt kan finna samma fel som testning mot molnet och om samma kod kan täckas av testerna. Detta görs på Blekinge Tekniska Högskola(BTH) genom att skapa ett integrationssystem för företaget Cybercom Sweden och Karlskrona Kommun. Integrationssystemet görs i C] och fungerar som så att det synkar scheman från Novaschem till en molntjänst, Google Calendar. Med detta arbete visar vi att ett mock-objekt istället för molnet är väldigt användbart när det kommer till städning efter tester, att utlösa vissa tillstånd och för att undvika begränsningar. Nyckelord: Mock-Objekt, Molntjänster, Testning, Testutvärdering iii Preface This thesis is the final step for our master in game and software engineering at BTH and represents 20 weeks of full time study. At BTH, we would like to thank our supervisor Mikael Svahnberg and our examiner Emil Alégroth for valuable feedback during the project. As well as Bogdan Marculescu for help with insight into the world of academia. We want to thank Alexander Andersson and Johan Persbeck at Cybercom Sweden for providing us with the idea and assistance throughout the project. We also want to thank those who have read and given feedback on this thesis. v Nomenclature Acronyms API Application Programming Interface AWS Amazon Web Services FITTEST Future Internet Testing IaaS Infrastructure as a Service NIST National Institute of Standards and Technology PaaS Platform as a Service SaaS Software as a Service SUT System Under Test UI User Interface vii Table of Contents Abstract i Sammanfattning (Swedish) iii Preface v Nomenclature vii Acronyms ........................................ vii Table of Contents ix 1 Introduction 1 1.1 Introduction .................................... 1 1.2 Background .................................... 1 1.3 Objectives ..................................... 2 1.4 Delimitations .................................... 2 1.5 Thesis question and technical problem ...................... 2 2 Theoretical Framework 3 2.1 Cloud Computing ................................. 3 2.2 Testing ....................................... 5 2.3 Test Evaluation .................................. 8 3 Method - Design 11 3.1 Literature Study .................................. 11 3.2 Interview and Observations ............................ 12 3.3 Testing ....................................... 12 3.4 Test Evaluation .................................. 12 4 Method - Execution 15 4.1 Literature Study .................................. 15 4.2 Interview and Observations ............................ 15 4.3 System Under Test ................................ 16 4.4 Testing ....................................... 20 4.5 Test Evaluation .................................. 21 4.6 Validity Threats .................................. 22 5 Results 23 5.1 Research Question 1 ............................... 23 5.2 Research Question 2 ............................... 26 5.3 Research Question 3 ............................... 28 6 Discussion 29 6.1 Coverage Measurements ............................. 29 6.2 Mutation Score .................................. 29 6.3 Advantages .................................... 29 6.4 Disadvantages ................................... 31 6.5 When to use a mock-object ............................ 31 6.6 Sustainability ................................... 31 7 Conclusions 33 8 Recommendations and Future Work 35 References 37 ix A Interview Developer Cybercom A-1 B Example unit tests from Test Suite A-5 B.1 EventExists .................................... A-5 B.2 NewActivityAdded ................................. A-6 C Example Mock-Object Unit Test A-7 x 1 INTRODUCTION 1.1 Introduction Cloud computing [3] has been on the rise over the past decade[18] with a heavy increase of its use in the software industry. A cloud is to put it simply, computer functionality that can be reached over network. Cloud computing can, depending on the cloud service, be used to host executable code and/or data through different ways of access; everything from simple Application Programming Interfaces (APIs) or User Interfaces (UIs) that give the user very little control to full control over the system. The focus of this paper is the highest abstraction level of cloud services, Software as a Service (SaaS), where the user have the least control over the cloud system. When it comes to testing of a system that uses data that is stored on a SaaS cloud, there are some extra challenges compared to having the data in a database. Since a SaaS cloud can only be accessed at a high abstraction level, such as through an API, the available requests can be limited both in how many requests can be sent and the amount of different requests; which limits the testing that can be done. This area of testing is very relevant to modern internet and not that much have been written about it before which makes it an area that have potential to evolve. This study is focused on evaluating how testing such a system will differ when using a mock of the SaaS in the form of a database compared to regular testing of the system. This is done in two main parts, with the first part being a classification of differences when testing an application that make use of a SaaS cloud and a database respectively to store data. This classification is based on a literature study as well as observations and an interview at Cybercom. The second part is done by implementing an integration system between a scheduling service by Nova Software, Novaschem[26], and a SaaS, Google Calendar[12]. This is done to see in practice what difficulties there are when it comes to testing this kind of system and if a mock of the SaaS cloud is useful in a concrete scenario. In addition to that the testing is evaluated using three test measurements, Block coverage, Branch coverage and Condition coverage. With respect to cloud testing, there is plenty of research discussing how to use the cloud for testing[34][16]. However, very little is written about testing of applications that use cloud services. This study is made to see if there are any specific problems and if a mock pattern can be used to make testing easier and in what way. 1.2 Background Cybercom Group Karlskrona have been tasked by the municipality of Karlskrona with creating an integration system between Novaschem, a scheduling system by Nova Software, and Google Calendar, a SaaS cloud. To make sure the system is robust the system needs to be well tested. Since Cybercom does not have any special routines for testing applications that are using data in a cloud and there are some challenges within this area that we thought could be explored more in depth with the possibility of finding a better testing routine. 1 1.3 Objectives The goal of this thesis project is to create a stable integration system between a scheduling service called Novaschem and Google Calendar. This integration system needs to be tested thoroughly to ensure that it is stable and functional. When testing two different approaches will be compared, regular unit testing against Google Calendar, the SaaS cloud, and unit testing using a database as a mock object. These two approaches will be evaluated and compared both in terms of what challenges and experiences from applying the techniques, but also by measuring different unit test coverages for the two test suites. 1.4 Delimitations The implementation of the integration system which will be used to compare and evaluate the testing will make use of a single SaaS, Google Calendar, and results could vary depending on what SaaS is used. However some general conclusions can be drawn from the results when taking into account the other data sources for the case study, such as the theoretical framework and looking at documentation of other SaaSs services. When looking at these SaaS we limit ourselves to 3rd party
Recommended publications
  • Contributions to Model-Based Testing of Dynamic and Distributed Real-Time Systems Moez Krichen
    Contributions to Model-Based Testing of Dynamic and Distributed Real-Time Systems Moez Krichen To cite this version: Moez Krichen. Contributions to Model-Based Testing of Dynamic and Distributed Real-Time Systems. Performance [cs.PF]. École Nationale d’Ingénieurs de Sfax (Tunisie), 2018. tel-02495153 HAL Id: tel-02495153 https://hal.archives-ouvertes.fr/tel-02495153 Submitted on 1 Mar 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Doctoral School The Minister of Higher Education Sciences and Technologies and Scientific Research HDR Thesis University of Sfax Computer System Engineering National Engineering School of Sfax Order N°: THESIS Presented at National Engineering School of Sfax to obtain the title of HDR IN COMPUTER SCIENCES Computer System Engineering by Moez KRICHEN Contributions to Model-Based Testing of Dynamic and Distributed Real-Time Systems Defended on 15 August 2018 in front of the jury composed of: Prof. Mohamed Jmaiel (University of Sfax, Tunisia) Chair Prof. Kamel Barkaoui (CEDRIC-CNAM, France) Reviewer Prof. Adel Mahfoudhi (University of Sfax, Tunisia) Reviewer Prof. Wassim Jaziri (University of Sfax, Tunisia) Examiner A.Pr. Mahdi Khemakhem (University of Sfax, Tunisia) Examiner Abstract In this dissertation we report on our main research contributions dealing with Model-Based Testing of Dynamic and Distributed Real-Time Systems, performed during the last ten years.
    [Show full text]
  • Cloud Testing: Enhanced Software Testing Framework
    International Journal of Engineering, Science and Mathematics Vol. 6 Issue 4, August 2017, ISSN: 2320-0294 Impact Factor: 6.765 Journal Homepage: http://www.ijesm.co.in, Email: [email protected] Double-Blind Peer Reviewed Refereed Open Access International Journal - Included in the International Serial Directories Indexed & Listed at: Ulrich's Periodicals Directory ©, U.S.A., Open J-Gage as well as in Cabell’s Directories of Publishing Opportunities, U.S.A CLOUD TESTING: ENHANCED SOFTWARE TESTING FRAMEWORK 1 2 3 Manish Sharma , Bright Keswani , Vibhakar Pathak 1 2 3 Research Scholar SGVU , Associate Professor SGVU, Professor ACEIT ABSTRACT What is Cloud testing? Cloud-based testing is more resourceful and effectual than conventional methods but organizations must comprehend and reliance it before it sees widespread implementation. Software testing which is based on Cloud Computing Environment is known as Cloud Testing. The cloud computing not only changes the technique of acquiring computer resources but also changes line of attack of managing computing services, technologies and solutions and also delivering it. To make certain elevated worth of cloud applications underneath growth and expansion, the one who is developing be required to execute testing to scrutinize the worth and precision anything they design. In this research paper, we tackle the questions of which software testing methodology can accomplish the cloud testing and why and how one carry on to do cloud testing and testing environmental architecture with valuable key benefits. We will perform execution of test cases and used testing methodologies to enhance quality of cloud applications. Keywords: Cloud, Cloud-Testing, Testing-methodologies, computer-services, technologies, Cloud- Applications, Cloud-computing Environment, Software-Testing.
    [Show full text]
  • A Survey of Cloud Computing Simulations and Cloud Testing Page 1 of 8
    A Survey of Cloud Computing Simulations and Cloud Testing Page 1 of 8 A Survey of Cloud Computing Simulations and Cloud Testing Azin Oujani, [email protected] (A project report written under the guidance of Prof. Raj Jain) Download Abstract: Cloud computing is a hot topic all over the world nowadays, through which customers can access information and computer power via a web browser. Hence, it eliminates the need for maintaining expensive computing facilities. The characteristics of a typical cloud are: on-demand access, scalability, elasticity, cost reduction, minimum management effort, and device/location independence. As the adoption and deployment of cloud computing increase, it is critical to evaluate the performance of cloud environments. Modeling and simulation technologies are suitable for evaluating performance and security issues. Testing cloud-based software systems needs techniques and tools to deal with infrastructure-based quality concerns of clouds. These tools can be built on the cloud platform to take advantage of virtualized platforms and services as well as substantial resources and parallelized execution. This paper explores the concept of cloud computing, surveys various modeling and simulation techniques, and introduces cloud testing concepts along with the recently developed benchmarks that are used in cloud testing. Keywords: Cloud Computing, Performance Analysis, IaaS, SaaS, PaaS, SLA, Public Cloud, Private Cloud, Hybrid Cloud, Cloud Simulators, Cloud Testing, Cloud Testing Benchmarks Table of Contents: • 1. Introduction ◦ 1.1. Introduction to Cloud Computing ◦ 1.2. What Is A Cloud? ◦ 1.3. Why Is The Cloud Used? ◦ 1.4. How to Utilize Cloud Computing? ◾ 1.4.1. SaaS ◾ 1.4.2.
    [Show full text]
  • Cloud Based Testing: Need of Testing in Cloud Platforms
    International Journal of Application or Innovation in Engineering & Management (IJAIEM) Web Site: www.ijaiem.org Email: [email protected], [email protected] Volume 2, Issue 3, March 2013 ISSN 2319 - 4847 Cloud Based Testing: Need of Testing in Cloud Platforms Vinit B. Mohata1, Dhananjay M.Dakhane2, Ravindra L.Pardhi3 1,2,3Department of Computer Science and Engineering, Sipna’s COET, Amravati, India ABSTRACT Cloud computing is delivery of service rather than product. Cloud testing is a form of software testing in which web applications that use cloud computing environments. Cloud computing in general defined as delivering of services to clients based on internet it delivers services are like resources, software, information etc. Cloud-testing leverages cloud computing resources and models to enable all aspects of load-testing in a highly cost-effective manner. Cloud computing is a new approach of distributed computing where it uses cloud infrastructures for automatically supporting the user requirements. Testing is performed in three distinct areas of cloud they are infrastructure, platform and service. Cloud infrastructure will help to identify configuration and optimization opportunities for each cloud vendor. In this paper we discuss about cloud based testing and need of testing in cloud computing. Systems can be scaled to a high factor at a low operational cost. Cloud testing solutions are compatible with multiple form factors. The Cloud enables accessible testing assets globally at any time. Keywords: Cloud computing, cloud testing, cloud infrastructure. 1. INTRODUCTION Cloud computing changes the way of computation and services to customers which received significant attention, For example, it changes the way of providing and managing computing resources, such as CPUs, databases, and storage systems.
    [Show full text]
  • Conventional Software Testing Vs. Cloud Testing Mrs.A.Vanitha Katherine, Dr
    International Journal Of Scientific & Engineering Research, Volume 3, Issue 9, Spetember-2012 1 ISSN 2229-5518 Conventional Software Testing Vs. Cloud Testing Mrs.A.Vanitha Katherine, Dr. K. Alagarsamy, Abstract Software Testing is one of the important activities in software development process. Depending on the testing method employed, software testing can be implemented at any time in the development process. Traditionally most of the test effort occurs after the requirements have been defined and the coding process has been completed, but in the agile approaches most of the test effort is on-going. Conventional testing requires expensive dedicated infrastructure and resources that are only used sporadically. The growing complexity of business applications, it is harder to build and maintain in-house testing facilities that mimic real-time environments. Cloud computing has opened up new opportunities for software testing, which provides unlimited resources with scalability, flexibility and availability of distributed testing environment. It reduces the execution time of testing of large applications and lead to cost-effective solutions. However, it also explores challenges such as data security and a lack of standards. In this paper we present a comparative study on conventional software testing with cloud testing. We also highlight the challenges of these testing paradigms. Index Terms: Cloud Computing, Cloud Testing, Testing a Cloud, WAPT, STLC, TaaS, SaaS,PaaS, IaaS —————————— —————————— environments can be time-consuming and delay-prone. It can 1 INTRODUCTION typically take weeks or months to set up a simple test environment for a single application, delaying its release. On- Software testing is one of the significant activities in demand provisioning jumpstarts the process for forward-thinking software development.
    [Show full text]
  • AN OVERVIEW of CLOUD TESTING AS a SERVICE Amandeep Kaur Navjeet Singh Dr
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by KHALSA PUBLICATIONS ISSN: 2277–3061 (online) International Journal of Computers & Technology Volume 2 No.2 April 2012 AN OVERVIEW OF CLOUD TESTING AS A SERVICE Amandeep Kaur Navjeet Singh Dr. Gurdev Singh Asst. Prof, Dept of Comp App, Research Fellow Professor IT Apeejay Institute of Management, AIET Faridkot Gurukul Vidyapeeth Institute of Jalandhar,Punjab,India Engineering & Technology, Punjab ABSTRACT The resources of the cloud, while owned and maintained by a cloud service provider, are often borrowed by the enterprise. Testing is an important process for software quality assurance. A There are three acknowledged types of service offerings (Figure cloud infrastructure creates significant new opportunities for 1): software quality assurance and testing. Making the test infrastructure that directly represents the production cloud • Software-as-a-Service – examples include infrastructure is too expensive – in terms of hardware, software Salesforce.com, Google Apps, SAP, Taleo, WebEx, licenses and testing professionals. To deal with this challenge and Facebook. These are full-service applications the paper gives an overview of various cloud testing strategies accessed from anywhere on the Internet. These and also introduces „Testing as a Service‟, using Cloud services are implemented through the use of computing. distributed data centers. 1 INTRODUCTION Cloud Testing uses cloud infrastructure for software testing. Cloud computing [2] at it simplest is internet-based computing, with the use of shared resources and software provided on demand with reduced management effort. As a service it is still at an early stage, but the growth of cloud-based computing is outstripping even the most optimistic predictions.
    [Show full text]
  • 171. Software Testing in Cloud
    International Journal of Engineering Research and General Science Volume 3, Issue 1, January-February, 2015 ISSN 2091-2730 Software Testing in Cloud J.Jayashree, Dr.B.Persis Urbana Ivy, J.Vijayashreee School of Information Technology and Engineering, VIT University, India [email protected] Abstract— Cloud computing has developed as another figuring standard that effects a few diverse exploration fields, including programming testing. Testing cloud applications has its own characteristics that interest for novel testing routines and devices. Advancement of more compelling and adaptable programming testing strategies are being provided. This paper gives an account of an efficient review of distributed papers. We give a diagram with respect to fundamental commitments, patterns, crevices, opportunities, difficulties and conceivable Research headings. We give an audit of programming testing over the cloud writing and sort the assortment of work in the field. Keywords - exploration fields, routines, adaptable, patterms, assortment. Cloud computing with Software Testing Cloud computing is Internet computing. Cloud computing can be defined as utilizing the internet to provide technology enabled services to the people and organizations. Cloud computing empowers purchasers to get to assets online through the web, from anyplace at any time without stressing over specialized/physical administration also support issues of the first assets. Moreover, Assets of distributed computing are alert and adaptable. Cloud computing is free processing it is completely not quite the same as framework and utility figuring. Google Apps is the central illustration of Cloud figuring, it empowers to get to administrations by means of the program and conveyed on a great many machines over the Internet.
    [Show full text]
  • Cloud Testing Tools
    Proceedings of The 6th IEEE International Symposium on Service Oriented System Engineering (SOSE 2011) Cloud Testing Tools Xiaoying Bai∗ y, Muyang Li∗, Bin Chen∗, Wei-Tek Tsai∗ z, Jerry Gao∗ x ∗Department of Computer Science and Technology, TNList, Tsinghua University, Beijing, China y SKLSDE, Beijing University of Aeronautics and Astronautics, Beijing, China zSchool of Computing, Informatics, and Decision Systems Engineering, Arizona State University, USA xDepartment of Computer Science and Technology, San Jose State University, USA Email: [email protected], [email protected], [email protected], [email protected], [email protected] Abstract—Cloud platform provides an infrastructure for re- running 99.95% of the year, i.e., allows for 4.4 hours of source sharing, software hosting and service delivering in a downtime per year only. Unfortunately, an unexpected crash pay-per-use approach. To test the cloud-based software systems, happened in April, 2011 due to operation mistakes during techniques and tools are necessary to address unique quality concerns of the cloud infrastructure such as massive scalability network reconfiguration [5]. More than 70 organizations are and dynamic configuration. The tools can also be built on the affected including FourSquare, the New York Times, and cloud platform to benefit from virtualized platform and services, Reddit, who pay to use AWS to run their websites on EC2. Due massive resources, and parallelized execution. The paper makes to the accident, the performance of these websites is greatly a survey of representative approaches and typical tools for cloud decreased, and some sites were even down for dozens of testing.
    [Show full text]
  • On Building a Cloud-Based Mobile Testing Infrastructure Service System
    The Journal of Systems and Software 124 (2017) 39–55 Contents lists available at ScienceDirect The Journal of Systems and Software journal homepage: www.elsevier.com/locate/jss On building a cloud-based mobile testing infrastructure service system ∗ Chuanqi Tao a,b, , Jerry Gao c,d a Computer Science and Engineering Department, Nanjing University of Science and Technology, PR China b State Key Laboratory for Novel Software Technology, Nanjing University, PR China c Computer Engineering Department, San Jose State University, USA d Taiyuan University of Technology, Taiyuan, PR China a r t i c l e i n f o a b s t r a c t Article history: With the rapid advance of mobile computing, cloud computing and wireless network, there is a signif- Received 16 April 2016 icant increasing number of mobile subscriptions. This brings new business requirements and demands Revised 22 August 2016 in mobile testing service, and causes new issues and challenges. In this paper, informative discussions Accepted 8 November 2016 about cloud-based mobile testing-as-a-service (mobile TaaS) are offered, including the essential con- Available online 9 November 2016 cepts, focuses, test process, and the expected testing infrastructures. To address the need of infrastruc- Keywords: ture level service for mobile TaaS, this paper presents a developed system known as MTaaS to provide an Mobile testing as a service infrastructure-as-a-service (IaaS) for mobile testing, in order to indicate the feasibility and effectiveness Cloud-based infrastructure -as-a-service of cloud-based mobile testing service. In addition, the paper presents a comparison among cloud-based Mobile application testing mobile TaaS approaches and several best practices in industry are discussed.
    [Show full text]
  • Sdi4apps Deliverable Template
    TECHNICAL TES T ME T HODOLOGY JANUARY 2015 DELIVERABLE Project Acronym: SDI4Apps Grant Agreement number: 621129 Project Full Title: Uptake of Open Geographic Information Through Innovative Services Based on Linked Data D3.5 TECHNICAL TEST METHODOLOGY Revision no. 05 Authors: Matteo Lorenzini (Hyperborea) Alessandro Pironi (Hyperborea) Project co-funded by the European Commission within the ICT Policy Support Programme Dissemination Level P Public X C Confidential, only for members of the consortium and the Commission Services D3.5 Technical Test Methodology REVISION HISTORY Revision Date Author Organisation Description 01 23/12/2014 Matteo Lorenzini HYPER Initial draft 02 07/01/2015 Karel Charvát CCSS Contribution with initial suggestion about specific Martin Kuba Masaryk component will be tested University 03 23/01/2015 Martin Kuba Masaryk Contribution with suggestion University about functional and non functional testing 04 28/01/2015 Matteo Lorenzini HYPER Final Version and formatting 05 30/01/2015 Tomas Mildorf UWB Formatting, minor changes Statement of originality: This deliverable contains original unpublished work except where clearly indicated otherwise. Acknowledgement of previously published material and of the work of others has been made through appropriate citation, quotation or both. Disclaimer: Views expressed in this document are those of the individuals, partners or the consortium and do not represent the opinion of the Community. Page 3 of 17 © SDI4Apps Consortium 2015 D3.5 Technical Test Methodology TABLE OF CONTENTS
    [Show full text]
  • Testing Methods and Tools in a Cloud Computing Environment
    International Journal of Engineering Research & Technology (IJERT) ISSN: 2278-0181 Vol. 3 Issue 11, November-2014 Testing Methods and Tools in a Cloud Computing Environment Reshma D. Abhang, Prof B. B. Gite 1Department of Computer Engg, 2Head, Department of Computer Engg, Sinhgad Academy of Kondhwa, Sinhgad Academy of Kondhwa, Pune, India Pune, India Abstract- Cloud computing provides us various facilities II. TYPES OF TESTING such as it gives us ubiquitous, on-demand network access to Testing in cloud is different than outmoded on all computing resources i.e. servers, storage ,various premise testing where enterprise has to set up, sustain and services, web applications, networks. However because of prove the scenarios from end to end prospective in all this emerging nature of cloud computing, security is aspects.[4] Below is some of the testing required to unavoidable. This paper provides a review of cloud testing. perform once application is moved to cloud premises. Cloud computing, a new paradigm for developing and delivering computing applications and services, has gained System integration testing (SIT) - Testing considerable attention in recent years. Cloud computing can performed to authenticate that the cloud solution will impact all software life cycle stages, including the area of work within the current infrastructure and environments, software testing. proving that the employment of a cloud solution does not TaaS (Testing as a Service) or cloud testing, which includes influence any existing systems. testing the cloud and testing using the cloud, is a fast User acceptance Testing (UAT) -Testing is done developing area of research in software engineering. The to confirm that current provided cloud solution from the paper addresses general research in cloud testing, types of vendor meets the business necessities of the organization.
    [Show full text]
  • Cloud-Testing V/S Testing-Cloud
    Cloud-Testing vs. Testing a Cloud - 10th Annual International Software Testing Conference 2010 – Neha Mehrotra Abstract This white paper introduces Cloud computing business model which has been the natural evolution of the adoption of the ‘On Demand’ paradigm. The On Demand paradigm has been explained with examples. Cloud computing as a business model has been discussed for its various benefits and limitations. The view point described in this document differentiates between the terms ‘Cloud Testing’ and ‘Testing a Cloud’ as applicable in day-to-day business offerings. Cloud Testing exemplify Testing on demand and why is it termed as the future of testing services. Testing a Cloud demonstrates how contemporary verification strategies can help to overcome the associated limitations. Aug 2011 Introduction So, you have decided to jump on the Cloud bandwagon and reap its benefit. Before leaping onto term definitions, I would like to ask a question. What does Cloud mean to you? Cloud computing is not a new: • Technology that one should learn to be abreast for future business • Architecture that would help in easier software deployment • Standard or protocol In fact, one of the main issues that technical leaders are trying to address is interoperability between Cloud platforms. The introduction in any white paper or article or blog discussing Cloud computing often states, ‘Cloud computing is not new. It has been there since the inception of formal business contracts’. The following is definition of Cloud computing coming from a beginner that should clear the air for all novices starting with the usage ‘As a Service’: ‘Cloud computing is a business and economic model.
    [Show full text]