SlideShare ist ein Scribd-Unternehmen logo
1 von 9
Downloaden Sie, um offline zu lesen
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
DOI : 10.5121/ijcses.2013.4202 17
RESEARCH ON DISTRIBUTED SOFTWARE TESTING
PLATFORM BASED ON CLOUD RESOURCE
Shi Hengliang1
, Zhao Changwei1
, Huang Tao1
and Dong Yongsheng1
1
Computer School of Henan University of Science & Technology
shi_hl@sina.com.cn
ABSTRACT
In order to solve the low efficiency problem of large-scale distributed software testing , CBDSTP(
Cloud-Based Distributed Software Testing Platform) is put forward.This platform can provide continous
integration and automation of testing for large software systems, which can make full use of resources on
the cloud clients, achieving testing result s in the real environment and reasonable allocating testing jobs,
to resolve the Web application software configuration test, compatibility test and distributed test problems,
to reduce costs, improve efficiency. Through making MySQL testing on this prototype system, the
verification is made for platform architecture and job allocation effectiveness.
KEYWORDS
software testing platform, distributed job scheduling,ACO
1. INTRODUCTION
Compared with traditional software products, the degree of current software products’
integration,modulization and complication is becoming higher and higher, which makes the
testing of large-scale distributed software as a research hotspot. There are two reasons: the first is
the development of Internet makes Web application system’s complexity and scale increasing.
The traditional centralized software testing methods have certain limitations, and the virtual
testing environment and data is difficult to be realistic. The second is that global software
development has become a trend, making software development is from centralized to the
distributed method to realize software continuous integration and test anywhere and anytime.
Aiming at the problems of software testing, domestic and foreign scholars have put forward a
series of test tools and frameworks. In accordance with the realization way,software testing
platform can be mainly divided into centralized testing and distributed test. Based on the basis of
local testing, centralized software testing framework usually is only for certain type or structure
of software testing, which is characterized as higher testing cost and lower efficiency. Li[1]
proposed a testing framework for model transformation, Stocks and Carrington[2] put forward a
testing framework based on specification introduction, Hartman proposed a model based testing
tools AGEDIS[3], Marinov proposed a new automation testing in Java program test framework,
realizing automatic generation of test cases and operation [4].
The distributed software testing framework, will test the different jobs assigned to the different
test termina. After the test is completed, the testing framework will collect intermediate test
results, and generate the final test report. Porter[5] proposed a distributed software testing
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
18
framework based on Skoll, making full use of Internet free client resources and establishment of
software automation test platform. In the industry, there are many companies who have
developed its test framework, such as Cloud Testing, Kite and SOASTA[6], but these frames can
only be used for the Web application performance testing and load testing. Zhu[7] proposed a
distributed environment for real-time software automated regression testing framework, this
framework can complete automatic regression testing according to the specific needs of dynamic
configuration system information.
In view of the existing software testing tools and frameworks in solving large distributed software
testing exists insufficient, the author put forward cloud resources-based distributed software
testing platform of CBDSTP(Cloud-Based Distributed Software Testing Platform), which
provides a large software system continueous integration and test automation, making full use of
cloud resources on the client resources, and realized test job allocation according to resources
reasonably, achieved software testing objectives in the real environment , resolved the Web
application software configuration test, compatibility test and distributed test question, which
reduces the test cost, and improves the test efficiency.
2. CONSTRUCTION OF CBDSTP
Figure1.CBDSTP Deployment Graph
CBDSTP ( Cloud-Based Distributed Software Testing Platform ) is based on cloud computing
resources ( computing resources, storage resources, cyber source ), which testing personnel
submit test job through the Web browser, and then platform receives the test job, generates test
case, and then assigns the testing job to different test job running clients, finally collects different
test records and intermediate results for test result analysis and test report generation. Job running
client is a cloud platform terminal volunteers, they can apply to join and leave testing platform
according to its own terminal performance, and obtain certain economic benefits on the basis of
their working hours. During the test job execution, the server will manage and monitor all clients
running testing job dynamically. As shown in Figure 1.
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
19
The system structure of CBDSTP is shown as Figure2. The platform consists of testing client, job
running client and servers. The structure between server and testing client takes B/S, and the
structure between server and job runniing client takes C/S architecture. Test staff client provide
the test tasks, test process and test results view view interactive pages. Job running client is
responsible for excetuing testing jobs and uploading test ing intermediate result. The server is the
core of the test platform, consisting by Web server, test server and database server component,
responsible for the reception and management of test job, generation of test subtasks and
scheduling of jobs, running the client dynamic monitoring, collection and analysis of test results,
adjustment of testiing plan.
Figure 2. CBDSTP System Architecture Graph
Web server in servers section provides testing personnel 4 user serive interfaces such as
registration/login, submitting testing tasks, querying testing results and registration of job running
client. Database server is for storage static and dynamic data of system which is the resource
sharing platform. Testing server consists of test task partition, test task scheduler, test results
manager and a test task state tracker. Test task scheduler can implement task allocation fully
based on dynamic parameters of running client resource. Test results management analysis test
results uploading from operation end, which will produce test report by analysis of testing results
through using software’s statistical measure criterion. State tracker is responsible for real-time
tracking task running end state to call exception handling module according to state information
correspondingly.
2. CBDSTP PROCESSING FLOW
Testing personnel login and upload test task. Server invokes the task partition to generate
subtasks. Task running client registrates in and installs client software, sends testing task
request according to their own needs. Server task assigns test task for running client. Task
running client establishes testing environment, runs test task and upload test results. Server
analysis and collects the intermediate testing results to generate the final testing report. Testing
personnel views the test results report through browser.
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
20
Figure 3. CBDSTP processing flow
3. TESTING TASK PARTITION AND ALLOCATION ON CBDSTP
As a random search optimization algorithm, ACO algorithm and other simulated evolutionary
algorithm have defects, whose positive feedback makes the search results are prone to fall into
local optimal prematurally, i.e. when the search going into a certain extent, the solution of all
individual ants are basically as the same, but has been unable to obtain the optimal solution
stagnation from bigger range, that is to say it is unable to find the global optimal solution, it may
appear unbalanced phenomenon of load. Node resources overload easily result in cloud
computing task scheduling bottlenecks, which effects of task minimum completion time; node
resources under-load, the resources can not be fully utilized [8,9]. In swarm intelligence
optimization algorithms, there are PSO (Particle Swarm Optimization) algorithm[10], but PSO
algorithm is is difficult to understand,comparing with ACO algorithm, meanwhile the algorithm
is needed to encode for a large number of particles, so it requires larger work for the resource
node and task particles[11,12].
A typical job scheduling problem is described as the following: n jobs need to bedispatched onto
n node machines, and one node machine only processes one job, and one job only can be
implemented by one node machine[13]. So different dispatch plans have different execution cost
and resource consumption, job scheduling is to find one plan to make jobs completing smoothly
to ensure availability, reliability and optimality[14]. How to make a allocation to complete all
tasks with minimal cost is conversed into how to obtain task assignment matrix Rn*n. [15]
Suppose there are n ants to complete all the submitted jobs. Ant’s one trip stands for one job
dispatching procedure in which ant needs n walks which demonstrates dispatching one job,
tagging the walks as s; when all the ants complete one trip, can be thought as one loop finished;
Nc stands for the times of loop. And introduce two sets ask={task1,task2……,taskn} and
Node={node1,…,noden};Task stands for job set that is to be dispatched; and Node stands for
slave node machine set that is to be given jobs.
The traditional ACO algorithm was used in local pheromone renewal, the releasing
pheromones Q everytime is a constant. If the pheromone right of arc ( x, y ) is greater, the
number of ant who passes through the arc are more, so updating times of local pheromone is
more and more, which eventually leads to the information amount gap between different
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
21
arcs is too big, resulting in the algorithm searches trapped into local optimal. Therefore,
along with the algorithm search status changes, Q value should be constantly revised, and
not be a constant.
Definition 3.1 Suppose the number of ant passing by node X is m; and the number of ant
passing through arc ( x, y ) is M, then M / m is ant pheromone weight of arc ( x, y ).
Correction principle: Q(t)=Q*(1-(M/m)),and if m=0, Q(t) =0.
3.1 Global pheromone updating
During the Kth ant in the Q iteration, supposed there are a total of Rk ants passed by node X, and
there are rk ants who chose arc ( x, y ) as their following path. Algorithm for global update rule is
as the followging:
jijiij
old
iji
new
ij  ,,;*)1( 
(3-1)


m
k
k
ijij 1

(3-2)



 

else
jisfromkant
R
Q
k
k
k
ij
,0
ito)(),1(*

(3-3)
3.2 Local pheromone updating
In order to make the load more evenly, volatile balance factor is added in local pheromone
renewal rule. The balance factor is mainly used to describe the pheromone volatilization changes,
but is no longer constant.
Ordered:
,
max_
_
length
thislength
(3-4)
length_this represents the scheduling length, length_max for the iterative scheduling length this
job scheduling.
)1())((*)*1()1(  ttt ijijij 
(3-5)
3.3 Pheromone quantity control
In order to avoid algorithm stagnation, the quantity of pheromone on each path is limited in a
certain range[ min , max ], the value beyond of the range will be limited to min or max which
can be used to avoid the pheromone on a path is much larger than or is far less than the
pheromone on any other rest paths, causing all ants concentrate on the same path or away from a
path. And the setting of min or max is crucial, because each iteration path increases the
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
22
maximum information for 1/ )( gb
SL , which corresponds to a global optimal solution to this path
length, so when updating the optimal solution, it needs to update min or max simultaneously ,
and the pheromone min or max is inversely propotional to  and )( gb
SL , with proportional to
the number of excellent ant. The following rules are used to update dynamically.
))(*)1(2(
1)(max gb
SL
t




+ )( gb
SL

(3-6)
20
)(
)( max
min
t
t
 
(3-7)
Where is specified as the number of excellent ants.
4. IMPLEMENTATION AND VERIFICATION OF CBDSTP
CBDSTP is a software testing platform based on Web, using MyEclipse as development
environment, with Java as the development of language. System server is running in Linux
environment, and testing personnel client and test task running client run on Linux or Windows
OS. The system adopts MySQL as background database, for storing system dynamic information,
such as the test task information, test task running client information.
In order to verify the feasibility, experiments select MySQL, DTK2.0(EN) and DTP2.0(EN) as
measured software, included with a test script as test data. The goal is to validate the feasibility of
the platform architecture, so the simulation of some processing part ignores some problems that
should be considered in the actual environment, such as confidentiality and security.
Figure4. Tested task assignment graph
Figure4 shows the tested task assignment graph according to the ACO algorithm. We can see that
mysql7.0 is dispatched onto P1,P2,P3, and P4 physical machine. Respectively DTK2.0(EN) and
DTP2.0(EN) are also dispatched to some machines according to the burden of tested task.
The experimental conditions are as follows: 2 Linux servers connected by SSH seamlessly. 5 PC
with Windows and Linux OS of different configurations for running the testing task respectively;
3 ordinary PCs for testing personnel to use.
Testing personnel client: testers upload test tasks via the test task submission interface, including
testing task name, testing software code, test data, testing task running environment information,
test case list information. The test data contains test script and test cases. Testing task running
environment information includes testing task configuration information (such as the operating
system type, version), required testing tools and tool installation script. Testing case table
contains all cases name in tasks, the estimated execution time.
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
23
From Figure5, we can see the week average output or daily average output,and team output level.
Through the defects we can even trace back to the source problem.At the same time,we also can
grasp the team’s key tasks before distribution, and the task complete state in last period. we can
not only master the final results, but also the implementation process, even as the qulity and
quantity of tested softwares during certain period.
Figure5. Tested software monitor graph
Figure6. Intermediate Testing Result
Figure7.Final Testing Result
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
24
The intermediate testing result and the final testing results are shown as Figure 6 and Figure 7
respectively. According to the experimental results, the tester is only required to submit the test
task, system can automatically implement sub-task partitioning, generating test subtask,
allocating sub-task, collecting and analysis test results,and shape the final test report.
5. CONCLUSION
Based on the idea of making full use of cloud resources, this paper presents a distributed software
test platform,which supports contineous online testing for large-scale software systems. And it
can achieve test task division and scheduling, collection and analysis and other functions which
provides a well solution for distributed software test. And many experiments verificate the
feasibility and reliability of prototype design and architecture.
ACKNOWLEDGEMENTS
Thanks for the Cloud_Test Group of Henan University of Science & Technology!It is their
deligent work that made this paper complete.
REFERENCES
[1] Lin Yuehua,Zhang Jing,Gray J.(2005) "A testing framework for model transformations"
[M],Modeldriven Software Development, Research and Practice in Software
Engineering.Springer,Vol.32, No.5,pp.219:-236
[2] Stocks P A,Carrington D A.(2010) "Test templates: A specification-based testing framework",
Proc.of15th International Conference on Software Engineering,pp.405-414,1993.
[3] Hartman A, Nagin K. "The AGEDIS tools for model based testing"[C], International Symposium on
Software Testing and Analysis, ,Vol.29,No.4,pp.129-132,2004.
[4] Marinov D,Khurshid S. "TestEra: A novel framework for automated testing of Java program" [C].Proc
of 16th IEEE International Conference on Automated Software Engineering.San Diego, CA,pp.22-32,
2001.
[5] Porter A,Yilmaz C, Memon A M. "Skoll: Distributed continuous quality assurance" [C]. Proc of the
26th IEEE ACM International Conference on Software Engineering. Edingburgh, Scotlang,
pp.129-127, 2004.
[6] Rankin C. "The software testing automation framework" [J].IBM System Journal:Software Testing and
Verification, ,Vol.41,No.1,pp.126-139,2002.
[7] Zhu F,Ryadurgam S, Tsai W T. "Automating regression testing for real-time software in a distributed
environment" [C].Proc of 1st International Sysposium on Object-oriented Real-time distributed
computing.pp.373-382,1998.
[8] P. Maechling, H. Chalupsky, etc. "Simplifying Construction of Complex Workflows for Non-expert
Users of the Southern California Earthquake Center Community Modeling Environment". ACM
SIGMOD Record, ,Vol.34,No.3,pp.24~30,2005.
[9] H.-M. Lee, T.-Y. Lee, and M.-H. Hsu. "A process schedule analyzing model based on grid
environment", Artificial Intelligence, Vol.53,No.42,pp. 938~947,2006.
[10]Xu Bowei,Li Junjun, "Discrete PSO algorithm based on pheromone", Journal of Shanghai Maritime
Univeristy, Vol.32,No.3,pp.74~78,2011.
[11]Nakajima T, Tezuka H. "A continuous media application supporting dynamic QoS control on real-time
mach". Proceedings of the ACM Multimedia. ACM Press,pp.289~297,1994.
[12]M. Chinnadurai, M. Joseph, (2012)"Survey on Scheduling and Allocation in High Level
Synthesis",International Journal of Computer Science & Engineering Survey (IJCSES) Vol.3, No.5,
pp:43-54.
International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013
25
[13]Zahra Askarinejad Amiri,(2012). "Challenges and Weaknesses of Agile Method in Enterprise
Architecture", International Journal of Computer Science & Engineering Survey (IJCSES), Vol.3,
No.6, pp:37-45.
[14]Aguilar J,Gelenbe E. "Task assignment and transcation clustering heuristics for distributed system" [J],
Information Science,Vol.32,No.9,pp.199-219,1997.
[15]Md. Firoj Ali, Rafiqul Zaman Khan,(2012) " The Study on Load Balancing Strategies in Distributed
Computing System " International Journal of Computer Science & Engineering Survey (IJCSES),
Vol.3, No.2, pp:19-30.
Authors
Shi Hengliang, Ph. D, associate processor, research intrest includs cloud computing,
distributedcoumputing, software testing method and engineering.

Weitere ähnliche Inhalte

Was ist angesagt?

Cloud computing Review over various scheduling algorithms
Cloud computing Review over various scheduling algorithmsCloud computing Review over various scheduling algorithms
Cloud computing Review over various scheduling algorithmsIJEEE
 
2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )
2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )
2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )SBGC
 
Securing Multi-copy Dynamic Data in Cloud using AES
Securing Multi-copy Dynamic Data in Cloud using AESSecuring Multi-copy Dynamic Data in Cloud using AES
Securing Multi-copy Dynamic Data in Cloud using AESIRJET Journal
 
Mca & diplamo java titles
Mca & diplamo java titlesMca & diplamo java titles
Mca & diplamo java titlestema_solution
 
Reactive Stream Processing for Data-centric Publish/Subscribe
Reactive Stream Processing for Data-centric Publish/SubscribeReactive Stream Processing for Data-centric Publish/Subscribe
Reactive Stream Processing for Data-centric Publish/SubscribeSumant Tambe
 
Synchronization and replication through ocmdbs
Synchronization and replication through ocmdbsSynchronization and replication through ocmdbs
Synchronization and replication through ocmdbsIAEME Publication
 
Configuration Optimization for Big Data Software
Configuration Optimization for Big Data SoftwareConfiguration Optimization for Big Data Software
Configuration Optimization for Big Data SoftwarePooyan Jamshidi
 
A survey of various scheduling algorithm in cloud computing environment
A survey of various scheduling algorithm in cloud computing environmentA survey of various scheduling algorithm in cloud computing environment
A survey of various scheduling algorithm in cloud computing environmenteSAT Publishing House
 
Resource scheduling algorithm
Resource scheduling algorithmResource scheduling algorithm
Resource scheduling algorithmShilpa Damor
 
Quality of Service based Task Scheduling Algorithms in Cloud Computing
Quality of Service based Task Scheduling Algorithms in  Cloud Computing  Quality of Service based Task Scheduling Algorithms in  Cloud Computing
Quality of Service based Task Scheduling Algorithms in Cloud Computing IJECEIAES
 
Shuffle phase as the bottleneck in Hadoop Terasort
Shuffle phase as the bottleneck in Hadoop TerasortShuffle phase as the bottleneck in Hadoop Terasort
Shuffle phase as the bottleneck in Hadoop Terasortpramodbiligiri
 
Scheduling in cloud computing
Scheduling in cloud computingScheduling in cloud computing
Scheduling in cloud computingijccsa
 
Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...
Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...
Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...IJSRD
 
Role of Operational System Design in Data Warehouse Implementation: Identifyi...
Role of Operational System Design in Data Warehouse Implementation: Identifyi...Role of Operational System Design in Data Warehouse Implementation: Identifyi...
Role of Operational System Design in Data Warehouse Implementation: Identifyi...iosrjce
 
A survey-report-on-cloud-computing-testing-environment
A survey-report-on-cloud-computing-testing-environmentA survey-report-on-cloud-computing-testing-environment
A survey-report-on-cloud-computing-testing-environmentshritosh kumar
 
Hadoop Network Performance profile
Hadoop Network Performance profileHadoop Network Performance profile
Hadoop Network Performance profilepramodbiligiri
 
Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...
Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...
Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...IJCSIS Research Publications
 
Load Balancing in Cloud Computing Environment: A Comparative Study of Service...
Load Balancing in Cloud Computing Environment: A Comparative Study of Service...Load Balancing in Cloud Computing Environment: A Comparative Study of Service...
Load Balancing in Cloud Computing Environment: A Comparative Study of Service...Eswar Publications
 

Was ist angesagt? (19)

Cloud computing Review over various scheduling algorithms
Cloud computing Review over various scheduling algorithmsCloud computing Review over various scheduling algorithms
Cloud computing Review over various scheduling algorithms
 
2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )
2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )
2017 IEEE Projects 2017 For Cse ( Trichy, Chennai )
 
Securing Multi-copy Dynamic Data in Cloud using AES
Securing Multi-copy Dynamic Data in Cloud using AESSecuring Multi-copy Dynamic Data in Cloud using AES
Securing Multi-copy Dynamic Data in Cloud using AES
 
Mca & diplamo java titles
Mca & diplamo java titlesMca & diplamo java titles
Mca & diplamo java titles
 
Reactive Stream Processing for Data-centric Publish/Subscribe
Reactive Stream Processing for Data-centric Publish/SubscribeReactive Stream Processing for Data-centric Publish/Subscribe
Reactive Stream Processing for Data-centric Publish/Subscribe
 
Synchronization and replication through ocmdbs
Synchronization and replication through ocmdbsSynchronization and replication through ocmdbs
Synchronization and replication through ocmdbs
 
Configuration Optimization for Big Data Software
Configuration Optimization for Big Data SoftwareConfiguration Optimization for Big Data Software
Configuration Optimization for Big Data Software
 
A survey of various scheduling algorithm in cloud computing environment
A survey of various scheduling algorithm in cloud computing environmentA survey of various scheduling algorithm in cloud computing environment
A survey of various scheduling algorithm in cloud computing environment
 
Resource scheduling algorithm
Resource scheduling algorithmResource scheduling algorithm
Resource scheduling algorithm
 
Quality of Service based Task Scheduling Algorithms in Cloud Computing
Quality of Service based Task Scheduling Algorithms in  Cloud Computing  Quality of Service based Task Scheduling Algorithms in  Cloud Computing
Quality of Service based Task Scheduling Algorithms in Cloud Computing
 
Shuffle phase as the bottleneck in Hadoop Terasort
Shuffle phase as the bottleneck in Hadoop TerasortShuffle phase as the bottleneck in Hadoop Terasort
Shuffle phase as the bottleneck in Hadoop Terasort
 
Scheduling in cloud computing
Scheduling in cloud computingScheduling in cloud computing
Scheduling in cloud computing
 
Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...
Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...
Identifying the Performance Efficiency Of Attribute Based Encryption With Sec...
 
Role of Operational System Design in Data Warehouse Implementation: Identifyi...
Role of Operational System Design in Data Warehouse Implementation: Identifyi...Role of Operational System Design in Data Warehouse Implementation: Identifyi...
Role of Operational System Design in Data Warehouse Implementation: Identifyi...
 
Mca titles
Mca titlesMca titles
Mca titles
 
A survey-report-on-cloud-computing-testing-environment
A survey-report-on-cloud-computing-testing-environmentA survey-report-on-cloud-computing-testing-environment
A survey-report-on-cloud-computing-testing-environment
 
Hadoop Network Performance profile
Hadoop Network Performance profileHadoop Network Performance profile
Hadoop Network Performance profile
 
Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...
Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...
Improve the Offloading Decision by Adaptive Partitioning of Task for Mobile C...
 
Load Balancing in Cloud Computing Environment: A Comparative Study of Service...
Load Balancing in Cloud Computing Environment: A Comparative Study of Service...Load Balancing in Cloud Computing Environment: A Comparative Study of Service...
Load Balancing in Cloud Computing Environment: A Comparative Study of Service...
 

Andere mochten auch

Vision based entomology a survey
Vision based entomology  a surveyVision based entomology  a survey
Vision based entomology a surveyijcses
 
the client assignment problem for continuous distributed interactive applicat...
the client assignment problem for continuous distributed interactive applicat...the client assignment problem for continuous distributed interactive applicat...
the client assignment problem for continuous distributed interactive applicat...swathi78
 
Primer concurs de taules 2
Primer concurs de taules 2Primer concurs de taules 2
Primer concurs de taules 2cancomte40
 
ADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONS
ADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONSADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONS
ADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONSijcses
 
Token Based Packet Loss Control Mechanism for Networks
Token Based Packet Loss Control Mechanism for NetworksToken Based Packet Loss Control Mechanism for Networks
Token Based Packet Loss Control Mechanism for NetworksIJMER
 
A survey on cost effective survivable network design in wireless access network
A survey on cost effective survivable network design in wireless access networkA survey on cost effective survivable network design in wireless access network
A survey on cost effective survivable network design in wireless access networkijcses
 

Andere mochten auch (8)

Vision based entomology a survey
Vision based entomology  a surveyVision based entomology  a survey
Vision based entomology a survey
 
the client assignment problem for continuous distributed interactive applicat...
the client assignment problem for continuous distributed interactive applicat...the client assignment problem for continuous distributed interactive applicat...
the client assignment problem for continuous distributed interactive applicat...
 
Primer concurs de taules 2
Primer concurs de taules 2Primer concurs de taules 2
Primer concurs de taules 2
 
ADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONS
ADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONSADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONS
ADAPTIVE MAP FOR SIMPLIFYING BOOLEAN EXPRESSIONS
 
Token Based Packet Loss Control Mechanism for Networks
Token Based Packet Loss Control Mechanism for NetworksToken Based Packet Loss Control Mechanism for Networks
Token Based Packet Loss Control Mechanism for Networks
 
A survey on cost effective survivable network design in wireless access network
A survey on cost effective survivable network design in wireless access networkA survey on cost effective survivable network design in wireless access network
A survey on cost effective survivable network design in wireless access network
 
Population
PopulationPopulation
Population
 
Pig Experience
Pig ExperiencePig Experience
Pig Experience
 

Ähnlich wie RESEARCH ON DISTRIBUTED SOFTWARE TESTING PLATFORM BASED ON CLOUD RESOURCE

Scale and Load Testing of Micro-Service
Scale and Load Testing of Micro-ServiceScale and Load Testing of Micro-Service
Scale and Load Testing of Micro-ServiceIRJET Journal
 
STATISTICAL ANALYSIS FOR PERFORMANCE COMPARISON
STATISTICAL ANALYSIS FOR PERFORMANCE COMPARISONSTATISTICAL ANALYSIS FOR PERFORMANCE COMPARISON
STATISTICAL ANALYSIS FOR PERFORMANCE COMPARISONijseajournal
 
Shuvam dutta | Performance tester
Shuvam dutta | Performance testerShuvam dutta | Performance tester
Shuvam dutta | Performance testerShuvam Dutta
 
1. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD1
1. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD11. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD1
1. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD1Jatin Aggarwal
 
1. performance testing on web application through hp load1
1. performance testing on web application through hp load11. performance testing on web application through hp load1
1. performance testing on web application through hp load1Jatin Aggarwal
 
Advanced Verification Methodology for Complex System on Chip Verification
Advanced Verification Methodology for Complex System on Chip VerificationAdvanced Verification Methodology for Complex System on Chip Verification
Advanced Verification Methodology for Complex System on Chip VerificationVLSICS Design
 
Test Case Optimization and Redundancy Reduction Using GA and Neural Networks
Test Case Optimization and Redundancy Reduction Using GA and Neural Networks Test Case Optimization and Redundancy Reduction Using GA and Neural Networks
Test Case Optimization and Redundancy Reduction Using GA and Neural Networks IJECEIAES
 
An Enhanced Throttled Load Balancing Approach for Cloud Environment
An Enhanced Throttled Load Balancing Approach for Cloud EnvironmentAn Enhanced Throttled Load Balancing Approach for Cloud Environment
An Enhanced Throttled Load Balancing Approach for Cloud EnvironmentIRJET Journal
 
Software Testing in Cloud Platform A Survey_final
Software Testing in Cloud Platform A Survey_finalSoftware Testing in Cloud Platform A Survey_final
Software Testing in Cloud Platform A Survey_finalwww.pixelsolutionbd.com
 
Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...
Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...
Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...AIRCC Publishing Corporation
 
TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...
TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...
TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...ijcsit
 
Automation Testing of Web based Application with Selenium and HP UFT (QTP)
Automation Testing of Web based Application with Selenium and HP UFT (QTP)Automation Testing of Web based Application with Selenium and HP UFT (QTP)
Automation Testing of Web based Application with Selenium and HP UFT (QTP)IRJET Journal
 
Performance Test Slideshow Recent
Performance Test Slideshow RecentPerformance Test Slideshow Recent
Performance Test Slideshow RecentFuture Simmons
 
Performance Test Slideshow R E C E N T
Performance Test Slideshow R E C E N TPerformance Test Slideshow R E C E N T
Performance Test Slideshow R E C E N TFuture Simmons
 
Unit Testing Essay
Unit Testing EssayUnit Testing Essay
Unit Testing EssayDani Cox
 
Software effort estimation through clustering techniques of RBFN network
Software effort estimation through clustering techniques of RBFN networkSoftware effort estimation through clustering techniques of RBFN network
Software effort estimation through clustering techniques of RBFN networkIOSR Journals
 
Hybrid Task Scheduling Approach using Gravitational and ACO Search Algorithm
Hybrid Task Scheduling Approach using Gravitational and ACO Search AlgorithmHybrid Task Scheduling Approach using Gravitational and ACO Search Algorithm
Hybrid Task Scheduling Approach using Gravitational and ACO Search AlgorithmIRJET Journal
 

Ähnlich wie RESEARCH ON DISTRIBUTED SOFTWARE TESTING PLATFORM BASED ON CLOUD RESOURCE (20)

Scale and Load Testing of Micro-Service
Scale and Load Testing of Micro-ServiceScale and Load Testing of Micro-Service
Scale and Load Testing of Micro-Service
 
STATISTICAL ANALYSIS FOR PERFORMANCE COMPARISON
STATISTICAL ANALYSIS FOR PERFORMANCE COMPARISONSTATISTICAL ANALYSIS FOR PERFORMANCE COMPARISON
STATISTICAL ANALYSIS FOR PERFORMANCE COMPARISON
 
Shuvam dutta
Shuvam duttaShuvam dutta
Shuvam dutta
 
Shuvam dutta | Performance tester
Shuvam dutta | Performance testerShuvam dutta | Performance tester
Shuvam dutta | Performance tester
 
1. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD1
1. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD11. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD1
1. PERFORMANCE TESTING ON WEB APPLICATION THROUGH HP LOAD1
 
1. performance testing on web application through hp load1
1. performance testing on web application through hp load11. performance testing on web application through hp load1
1. performance testing on web application through hp load1
 
Maestro_Abstract
Maestro_AbstractMaestro_Abstract
Maestro_Abstract
 
Advanced Verification Methodology for Complex System on Chip Verification
Advanced Verification Methodology for Complex System on Chip VerificationAdvanced Verification Methodology for Complex System on Chip Verification
Advanced Verification Methodology for Complex System on Chip Verification
 
Test Case Optimization and Redundancy Reduction Using GA and Neural Networks
Test Case Optimization and Redundancy Reduction Using GA and Neural Networks Test Case Optimization and Redundancy Reduction Using GA and Neural Networks
Test Case Optimization and Redundancy Reduction Using GA and Neural Networks
 
An Enhanced Throttled Load Balancing Approach for Cloud Environment
An Enhanced Throttled Load Balancing Approach for Cloud EnvironmentAn Enhanced Throttled Load Balancing Approach for Cloud Environment
An Enhanced Throttled Load Balancing Approach for Cloud Environment
 
Software Testing in Cloud Platform A Survey_final
Software Testing in Cloud Platform A Survey_finalSoftware Testing in Cloud Platform A Survey_final
Software Testing in Cloud Platform A Survey_final
 
Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...
Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...
Testing-as-a-Service (TaaS) – Capabilities and Features for Real-Time Testing...
 
TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...
TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...
TESTING-AS-A-SERVICE (TAAS) – CAPABILITIES AND FEATURES FOR REAL-TIME TESTING...
 
Automation Testing of Web based Application with Selenium and HP UFT (QTP)
Automation Testing of Web based Application with Selenium and HP UFT (QTP)Automation Testing of Web based Application with Selenium and HP UFT (QTP)
Automation Testing of Web based Application with Selenium and HP UFT (QTP)
 
Performance Test Slideshow Recent
Performance Test Slideshow RecentPerformance Test Slideshow Recent
Performance Test Slideshow Recent
 
Performance Test Slideshow R E C E N T
Performance Test Slideshow R E C E N TPerformance Test Slideshow R E C E N T
Performance Test Slideshow R E C E N T
 
Unit Testing Essay
Unit Testing EssayUnit Testing Essay
Unit Testing Essay
 
Software effort estimation through clustering techniques of RBFN network
Software effort estimation through clustering techniques of RBFN networkSoftware effort estimation through clustering techniques of RBFN network
Software effort estimation through clustering techniques of RBFN network
 
Hybrid Task Scheduling Approach using Gravitational and ACO Search Algorithm
Hybrid Task Scheduling Approach using Gravitational and ACO Search AlgorithmHybrid Task Scheduling Approach using Gravitational and ACO Search Algorithm
Hybrid Task Scheduling Approach using Gravitational and ACO Search Algorithm
 
Shuvam dutta
Shuvam duttaShuvam dutta
Shuvam dutta
 

Mehr von ijcses

A Study of Various Steganographic Techniques Used for Information Hiding
A Study of Various Steganographic Techniques Used for Information HidingA Study of Various Steganographic Techniques Used for Information Hiding
A Study of Various Steganographic Techniques Used for Information Hidingijcses
 
Neural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabNeural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabijcses
 
Congestion control in packet switched wide area networks using a feedback model
Congestion control in packet switched wide area networks using a feedback modelCongestion control in packet switched wide area networks using a feedback model
Congestion control in packet switched wide area networks using a feedback modelijcses
 
Ijcses(most cited articles)
Ijcses(most cited articles)Ijcses(most cited articles)
Ijcses(most cited articles)ijcses
 
MULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKS
MULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKSMULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKS
MULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKSijcses
 
A survey of real-time routing protocols For wireless sensor networks
A survey of real-time routing protocols For wireless sensor networksA survey of real-time routing protocols For wireless sensor networks
A survey of real-time routing protocols For wireless sensor networksijcses
 
An Approach to Detect Packets Using Packet Sniffing
An Approach to Detect Packets Using Packet SniffingAn Approach to Detect Packets Using Packet Sniffing
An Approach to Detect Packets Using Packet Sniffingijcses
 
Artificial intelligence markup language: a Brief tutorial
Artificial intelligence markup language: a Brief tutorialArtificial intelligence markup language: a Brief tutorial
Artificial intelligence markup language: a Brief tutorialijcses
 
A NOBEL HYBRID APPROACH FOR EDGE DETECTION
A NOBEL HYBRID APPROACH FOR EDGE  DETECTIONA NOBEL HYBRID APPROACH FOR EDGE  DETECTION
A NOBEL HYBRID APPROACH FOR EDGE DETECTIONijcses
 
PHYSICAL MODELING AND SIMULATION OF THERMAL HEATING IN VERTICAL INTEGRATED ...
PHYSICAL MODELING AND SIMULATION  OF THERMAL HEATING IN VERTICAL  INTEGRATED ...PHYSICAL MODELING AND SIMULATION  OF THERMAL HEATING IN VERTICAL  INTEGRATED ...
PHYSICAL MODELING AND SIMULATION OF THERMAL HEATING IN VERTICAL INTEGRATED ...ijcses
 

Mehr von ijcses (10)

A Study of Various Steganographic Techniques Used for Information Hiding
A Study of Various Steganographic Techniques Used for Information HidingA Study of Various Steganographic Techniques Used for Information Hiding
A Study of Various Steganographic Techniques Used for Information Hiding
 
Neural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabNeural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlab
 
Congestion control in packet switched wide area networks using a feedback model
Congestion control in packet switched wide area networks using a feedback modelCongestion control in packet switched wide area networks using a feedback model
Congestion control in packet switched wide area networks using a feedback model
 
Ijcses(most cited articles)
Ijcses(most cited articles)Ijcses(most cited articles)
Ijcses(most cited articles)
 
MULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKS
MULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKSMULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKS
MULTIDIMENSIONAL ANALYSIS FOR QOS IN WIRELESS SENSOR NETWORKS
 
A survey of real-time routing protocols For wireless sensor networks
A survey of real-time routing protocols For wireless sensor networksA survey of real-time routing protocols For wireless sensor networks
A survey of real-time routing protocols For wireless sensor networks
 
An Approach to Detect Packets Using Packet Sniffing
An Approach to Detect Packets Using Packet SniffingAn Approach to Detect Packets Using Packet Sniffing
An Approach to Detect Packets Using Packet Sniffing
 
Artificial intelligence markup language: a Brief tutorial
Artificial intelligence markup language: a Brief tutorialArtificial intelligence markup language: a Brief tutorial
Artificial intelligence markup language: a Brief tutorial
 
A NOBEL HYBRID APPROACH FOR EDGE DETECTION
A NOBEL HYBRID APPROACH FOR EDGE  DETECTIONA NOBEL HYBRID APPROACH FOR EDGE  DETECTION
A NOBEL HYBRID APPROACH FOR EDGE DETECTION
 
PHYSICAL MODELING AND SIMULATION OF THERMAL HEATING IN VERTICAL INTEGRATED ...
PHYSICAL MODELING AND SIMULATION  OF THERMAL HEATING IN VERTICAL  INTEGRATED ...PHYSICAL MODELING AND SIMULATION  OF THERMAL HEATING IN VERTICAL  INTEGRATED ...
PHYSICAL MODELING AND SIMULATION OF THERMAL HEATING IN VERTICAL INTEGRATED ...
 

Kürzlich hochgeladen

SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Kürzlich hochgeladen (20)

SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 

RESEARCH ON DISTRIBUTED SOFTWARE TESTING PLATFORM BASED ON CLOUD RESOURCE

  • 1. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 DOI : 10.5121/ijcses.2013.4202 17 RESEARCH ON DISTRIBUTED SOFTWARE TESTING PLATFORM BASED ON CLOUD RESOURCE Shi Hengliang1 , Zhao Changwei1 , Huang Tao1 and Dong Yongsheng1 1 Computer School of Henan University of Science & Technology shi_hl@sina.com.cn ABSTRACT In order to solve the low efficiency problem of large-scale distributed software testing , CBDSTP( Cloud-Based Distributed Software Testing Platform) is put forward.This platform can provide continous integration and automation of testing for large software systems, which can make full use of resources on the cloud clients, achieving testing result s in the real environment and reasonable allocating testing jobs, to resolve the Web application software configuration test, compatibility test and distributed test problems, to reduce costs, improve efficiency. Through making MySQL testing on this prototype system, the verification is made for platform architecture and job allocation effectiveness. KEYWORDS software testing platform, distributed job scheduling,ACO 1. INTRODUCTION Compared with traditional software products, the degree of current software products’ integration,modulization and complication is becoming higher and higher, which makes the testing of large-scale distributed software as a research hotspot. There are two reasons: the first is the development of Internet makes Web application system’s complexity and scale increasing. The traditional centralized software testing methods have certain limitations, and the virtual testing environment and data is difficult to be realistic. The second is that global software development has become a trend, making software development is from centralized to the distributed method to realize software continuous integration and test anywhere and anytime. Aiming at the problems of software testing, domestic and foreign scholars have put forward a series of test tools and frameworks. In accordance with the realization way,software testing platform can be mainly divided into centralized testing and distributed test. Based on the basis of local testing, centralized software testing framework usually is only for certain type or structure of software testing, which is characterized as higher testing cost and lower efficiency. Li[1] proposed a testing framework for model transformation, Stocks and Carrington[2] put forward a testing framework based on specification introduction, Hartman proposed a model based testing tools AGEDIS[3], Marinov proposed a new automation testing in Java program test framework, realizing automatic generation of test cases and operation [4]. The distributed software testing framework, will test the different jobs assigned to the different test termina. After the test is completed, the testing framework will collect intermediate test results, and generate the final test report. Porter[5] proposed a distributed software testing
  • 2. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 18 framework based on Skoll, making full use of Internet free client resources and establishment of software automation test platform. In the industry, there are many companies who have developed its test framework, such as Cloud Testing, Kite and SOASTA[6], but these frames can only be used for the Web application performance testing and load testing. Zhu[7] proposed a distributed environment for real-time software automated regression testing framework, this framework can complete automatic regression testing according to the specific needs of dynamic configuration system information. In view of the existing software testing tools and frameworks in solving large distributed software testing exists insufficient, the author put forward cloud resources-based distributed software testing platform of CBDSTP(Cloud-Based Distributed Software Testing Platform), which provides a large software system continueous integration and test automation, making full use of cloud resources on the client resources, and realized test job allocation according to resources reasonably, achieved software testing objectives in the real environment , resolved the Web application software configuration test, compatibility test and distributed test question, which reduces the test cost, and improves the test efficiency. 2. CONSTRUCTION OF CBDSTP Figure1.CBDSTP Deployment Graph CBDSTP ( Cloud-Based Distributed Software Testing Platform ) is based on cloud computing resources ( computing resources, storage resources, cyber source ), which testing personnel submit test job through the Web browser, and then platform receives the test job, generates test case, and then assigns the testing job to different test job running clients, finally collects different test records and intermediate results for test result analysis and test report generation. Job running client is a cloud platform terminal volunteers, they can apply to join and leave testing platform according to its own terminal performance, and obtain certain economic benefits on the basis of their working hours. During the test job execution, the server will manage and monitor all clients running testing job dynamically. As shown in Figure 1.
  • 3. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 19 The system structure of CBDSTP is shown as Figure2. The platform consists of testing client, job running client and servers. The structure between server and testing client takes B/S, and the structure between server and job runniing client takes C/S architecture. Test staff client provide the test tasks, test process and test results view view interactive pages. Job running client is responsible for excetuing testing jobs and uploading test ing intermediate result. The server is the core of the test platform, consisting by Web server, test server and database server component, responsible for the reception and management of test job, generation of test subtasks and scheduling of jobs, running the client dynamic monitoring, collection and analysis of test results, adjustment of testiing plan. Figure 2. CBDSTP System Architecture Graph Web server in servers section provides testing personnel 4 user serive interfaces such as registration/login, submitting testing tasks, querying testing results and registration of job running client. Database server is for storage static and dynamic data of system which is the resource sharing platform. Testing server consists of test task partition, test task scheduler, test results manager and a test task state tracker. Test task scheduler can implement task allocation fully based on dynamic parameters of running client resource. Test results management analysis test results uploading from operation end, which will produce test report by analysis of testing results through using software’s statistical measure criterion. State tracker is responsible for real-time tracking task running end state to call exception handling module according to state information correspondingly. 2. CBDSTP PROCESSING FLOW Testing personnel login and upload test task. Server invokes the task partition to generate subtasks. Task running client registrates in and installs client software, sends testing task request according to their own needs. Server task assigns test task for running client. Task running client establishes testing environment, runs test task and upload test results. Server analysis and collects the intermediate testing results to generate the final testing report. Testing personnel views the test results report through browser.
  • 4. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 20 Figure 3. CBDSTP processing flow 3. TESTING TASK PARTITION AND ALLOCATION ON CBDSTP As a random search optimization algorithm, ACO algorithm and other simulated evolutionary algorithm have defects, whose positive feedback makes the search results are prone to fall into local optimal prematurally, i.e. when the search going into a certain extent, the solution of all individual ants are basically as the same, but has been unable to obtain the optimal solution stagnation from bigger range, that is to say it is unable to find the global optimal solution, it may appear unbalanced phenomenon of load. Node resources overload easily result in cloud computing task scheduling bottlenecks, which effects of task minimum completion time; node resources under-load, the resources can not be fully utilized [8,9]. In swarm intelligence optimization algorithms, there are PSO (Particle Swarm Optimization) algorithm[10], but PSO algorithm is is difficult to understand,comparing with ACO algorithm, meanwhile the algorithm is needed to encode for a large number of particles, so it requires larger work for the resource node and task particles[11,12]. A typical job scheduling problem is described as the following: n jobs need to bedispatched onto n node machines, and one node machine only processes one job, and one job only can be implemented by one node machine[13]. So different dispatch plans have different execution cost and resource consumption, job scheduling is to find one plan to make jobs completing smoothly to ensure availability, reliability and optimality[14]. How to make a allocation to complete all tasks with minimal cost is conversed into how to obtain task assignment matrix Rn*n. [15] Suppose there are n ants to complete all the submitted jobs. Ant’s one trip stands for one job dispatching procedure in which ant needs n walks which demonstrates dispatching one job, tagging the walks as s; when all the ants complete one trip, can be thought as one loop finished; Nc stands for the times of loop. And introduce two sets ask={task1,task2……,taskn} and Node={node1,…,noden};Task stands for job set that is to be dispatched; and Node stands for slave node machine set that is to be given jobs. The traditional ACO algorithm was used in local pheromone renewal, the releasing pheromones Q everytime is a constant. If the pheromone right of arc ( x, y ) is greater, the number of ant who passes through the arc are more, so updating times of local pheromone is more and more, which eventually leads to the information amount gap between different
  • 5. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 21 arcs is too big, resulting in the algorithm searches trapped into local optimal. Therefore, along with the algorithm search status changes, Q value should be constantly revised, and not be a constant. Definition 3.1 Suppose the number of ant passing by node X is m; and the number of ant passing through arc ( x, y ) is M, then M / m is ant pheromone weight of arc ( x, y ). Correction principle: Q(t)=Q*(1-(M/m)),and if m=0, Q(t) =0. 3.1 Global pheromone updating During the Kth ant in the Q iteration, supposed there are a total of Rk ants passed by node X, and there are rk ants who chose arc ( x, y ) as their following path. Algorithm for global update rule is as the followging: jijiij old iji new ij  ,,;*)1(  (3-1)   m k k ijij 1  (3-2)       else jisfromkant R Q k k k ij ,0 ito)(),1(*  (3-3) 3.2 Local pheromone updating In order to make the load more evenly, volatile balance factor is added in local pheromone renewal rule. The balance factor is mainly used to describe the pheromone volatilization changes, but is no longer constant. Ordered: , max_ _ length thislength (3-4) length_this represents the scheduling length, length_max for the iterative scheduling length this job scheduling. )1())((*)*1()1(  ttt ijijij  (3-5) 3.3 Pheromone quantity control In order to avoid algorithm stagnation, the quantity of pheromone on each path is limited in a certain range[ min , max ], the value beyond of the range will be limited to min or max which can be used to avoid the pheromone on a path is much larger than or is far less than the pheromone on any other rest paths, causing all ants concentrate on the same path or away from a path. And the setting of min or max is crucial, because each iteration path increases the
  • 6. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 22 maximum information for 1/ )( gb SL , which corresponds to a global optimal solution to this path length, so when updating the optimal solution, it needs to update min or max simultaneously , and the pheromone min or max is inversely propotional to  and )( gb SL , with proportional to the number of excellent ant. The following rules are used to update dynamically. ))(*)1(2( 1)(max gb SL t     + )( gb SL  (3-6) 20 )( )( max min t t   (3-7) Where is specified as the number of excellent ants. 4. IMPLEMENTATION AND VERIFICATION OF CBDSTP CBDSTP is a software testing platform based on Web, using MyEclipse as development environment, with Java as the development of language. System server is running in Linux environment, and testing personnel client and test task running client run on Linux or Windows OS. The system adopts MySQL as background database, for storing system dynamic information, such as the test task information, test task running client information. In order to verify the feasibility, experiments select MySQL, DTK2.0(EN) and DTP2.0(EN) as measured software, included with a test script as test data. The goal is to validate the feasibility of the platform architecture, so the simulation of some processing part ignores some problems that should be considered in the actual environment, such as confidentiality and security. Figure4. Tested task assignment graph Figure4 shows the tested task assignment graph according to the ACO algorithm. We can see that mysql7.0 is dispatched onto P1,P2,P3, and P4 physical machine. Respectively DTK2.0(EN) and DTP2.0(EN) are also dispatched to some machines according to the burden of tested task. The experimental conditions are as follows: 2 Linux servers connected by SSH seamlessly. 5 PC with Windows and Linux OS of different configurations for running the testing task respectively; 3 ordinary PCs for testing personnel to use. Testing personnel client: testers upload test tasks via the test task submission interface, including testing task name, testing software code, test data, testing task running environment information, test case list information. The test data contains test script and test cases. Testing task running environment information includes testing task configuration information (such as the operating system type, version), required testing tools and tool installation script. Testing case table contains all cases name in tasks, the estimated execution time.
  • 7. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 23 From Figure5, we can see the week average output or daily average output,and team output level. Through the defects we can even trace back to the source problem.At the same time,we also can grasp the team’s key tasks before distribution, and the task complete state in last period. we can not only master the final results, but also the implementation process, even as the qulity and quantity of tested softwares during certain period. Figure5. Tested software monitor graph Figure6. Intermediate Testing Result Figure7.Final Testing Result
  • 8. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 24 The intermediate testing result and the final testing results are shown as Figure 6 and Figure 7 respectively. According to the experimental results, the tester is only required to submit the test task, system can automatically implement sub-task partitioning, generating test subtask, allocating sub-task, collecting and analysis test results,and shape the final test report. 5. CONCLUSION Based on the idea of making full use of cloud resources, this paper presents a distributed software test platform,which supports contineous online testing for large-scale software systems. And it can achieve test task division and scheduling, collection and analysis and other functions which provides a well solution for distributed software test. And many experiments verificate the feasibility and reliability of prototype design and architecture. ACKNOWLEDGEMENTS Thanks for the Cloud_Test Group of Henan University of Science & Technology!It is their deligent work that made this paper complete. REFERENCES [1] Lin Yuehua,Zhang Jing,Gray J.(2005) "A testing framework for model transformations" [M],Modeldriven Software Development, Research and Practice in Software Engineering.Springer,Vol.32, No.5,pp.219:-236 [2] Stocks P A,Carrington D A.(2010) "Test templates: A specification-based testing framework", Proc.of15th International Conference on Software Engineering,pp.405-414,1993. [3] Hartman A, Nagin K. "The AGEDIS tools for model based testing"[C], International Symposium on Software Testing and Analysis, ,Vol.29,No.4,pp.129-132,2004. [4] Marinov D,Khurshid S. "TestEra: A novel framework for automated testing of Java program" [C].Proc of 16th IEEE International Conference on Automated Software Engineering.San Diego, CA,pp.22-32, 2001. [5] Porter A,Yilmaz C, Memon A M. "Skoll: Distributed continuous quality assurance" [C]. Proc of the 26th IEEE ACM International Conference on Software Engineering. Edingburgh, Scotlang, pp.129-127, 2004. [6] Rankin C. "The software testing automation framework" [J].IBM System Journal:Software Testing and Verification, ,Vol.41,No.1,pp.126-139,2002. [7] Zhu F,Ryadurgam S, Tsai W T. "Automating regression testing for real-time software in a distributed environment" [C].Proc of 1st International Sysposium on Object-oriented Real-time distributed computing.pp.373-382,1998. [8] P. Maechling, H. Chalupsky, etc. "Simplifying Construction of Complex Workflows for Non-expert Users of the Southern California Earthquake Center Community Modeling Environment". ACM SIGMOD Record, ,Vol.34,No.3,pp.24~30,2005. [9] H.-M. Lee, T.-Y. Lee, and M.-H. Hsu. "A process schedule analyzing model based on grid environment", Artificial Intelligence, Vol.53,No.42,pp. 938~947,2006. [10]Xu Bowei,Li Junjun, "Discrete PSO algorithm based on pheromone", Journal of Shanghai Maritime Univeristy, Vol.32,No.3,pp.74~78,2011. [11]Nakajima T, Tezuka H. "A continuous media application supporting dynamic QoS control on real-time mach". Proceedings of the ACM Multimedia. ACM Press,pp.289~297,1994. [12]M. Chinnadurai, M. Joseph, (2012)"Survey on Scheduling and Allocation in High Level Synthesis",International Journal of Computer Science & Engineering Survey (IJCSES) Vol.3, No.5, pp:43-54.
  • 9. International Journal of Computer Science & Engineering Survey (IJCSES) Vol.4, No.2, April 2013 25 [13]Zahra Askarinejad Amiri,(2012). "Challenges and Weaknesses of Agile Method in Enterprise Architecture", International Journal of Computer Science & Engineering Survey (IJCSES), Vol.3, No.6, pp:37-45. [14]Aguilar J,Gelenbe E. "Task assignment and transcation clustering heuristics for distributed system" [J], Information Science,Vol.32,No.9,pp.199-219,1997. [15]Md. Firoj Ali, Rafiqul Zaman Khan,(2012) " The Study on Load Balancing Strategies in Distributed Computing System " International Journal of Computer Science & Engineering Survey (IJCSES), Vol.3, No.2, pp:19-30. Authors Shi Hengliang, Ph. D, associate processor, research intrest includs cloud computing, distributedcoumputing, software testing method and engineering.