CN116340126A - Test method, system, storage medium and computer equipment based on business model - Google Patents

Test method, system, storage medium and computer equipment based on business model Download PDF

Info

Publication number
CN116340126A
CN116340126A CN202111536902.3A CN202111536902A CN116340126A CN 116340126 A CN116340126 A CN 116340126A CN 202111536902 A CN202111536902 A CN 202111536902A CN 116340126 A CN116340126 A CN 116340126A
Authority
CN
China
Prior art keywords
software product
test
service
interface information
information
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202111536902.3A
Other languages
Chinese (zh)
Inventor
仲卫超
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
360 Digital Security Technology Group Co Ltd
Original Assignee
360 Digital Security Technology Group Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 360 Digital Security Technology Group Co Ltd filed Critical 360 Digital Security Technology Group Co Ltd
Priority to CN202111536902.3A priority Critical patent/CN116340126A/en
Publication of CN116340126A publication Critical patent/CN116340126A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3688Test management for test execution, e.g. scheduling of test suites
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3692Test management for test results analysis

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The invention provides a test method based on a service model, which comprises the steps of obtaining interface information of a software product to be tested; constructing a corresponding service model according to the service logic rules of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product; executing the test case through the service model, and receiving service data fed back by the software product based on the test case. The invention also provides a test system, a storage medium and computer equipment based on the service model. Therefore, the invention solves the problem of labor cost caused by repeated modification of the automatic script due to manual data establishment or page change, and effectively improves the test efficiency.

Description

Test method, system, storage medium and computer equipment based on business model
Technical Field
The present invention relates to the field of software testing technologies, and in particular, to a testing method, system, storage medium, and computer device based on a service model.
Background
The software product is initially free of business data, and testing the software requires underlying business scenario data such as roles, account numbers, packet information, initial business scenarios, network models, and so forth.
The conventional method for software testers is to manually add data piece by piece on a platform, insert data through a database script statement, and simulate page clicking and add data through automatic software, and the method has the following pain points: 1. the cost of manually adding data is high, and the efficiency is low; 2. the data imported through the database script statement only meets the database level, cannot meet the requirements of operations needing snapshot files or other than the database such as a virtual machine, and is easy to generate dirty data; 3. the automation software simulates a page clicking mode, and after the page style changes, the automation script needs to be changed, so that the maintenance cost is high.
From the above, basic business scene data is generated, so that the labor cost is saved, and the efficiency is improved, so that the method has very high research value; however, the prior art does not provide an effective technical solution to automatically acquire service scene data.
In summary, the conventional method has many problems in practical use, so that improvement is necessary.
Disclosure of Invention
Aiming at the defects, the invention aims to provide a testing method, a testing system, a testing medium and computer equipment based on a business model, which can solve the problem of labor cost caused by repeated modification of an automatic script due to manual data establishment or page change and effectively improve testing efficiency.
In order to achieve the above object, the present invention provides a testing method based on a service model, comprising the steps of:
acquiring interface information of a software product to be tested;
constructing a corresponding service model according to the service logic rules of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product;
executing the test case through the service model, and receiving service data fed back by the software product based on the test case.
Optionally, the step of constructing a corresponding service model according to the service logic rule of the software product and the interface information specifically includes:
determining a protocol transmission sequence among interfaces of the software product based on the business logic rule;
and constructing and generating the service model according to the interface information and the protocol transmission sequence.
Optionally, the step of executing the test case through the service model and receiving service data fed back by the software product based on the test case specifically includes:
automatically sending protocol information among the interfaces through the service model;
and acquiring the service data fed back by the software product based on the protocol information transmission response.
Optionally, the step of automatically sending protocol information between the interfaces through the service model specifically includes:
code-based execution or automation of test tools by the business model to send the protocol information.
Optionally, the step of obtaining interface information of the software product to be tested specifically includes:
the interface information on the interface document of the software product is obtained.
Optionally, the step of obtaining interface information of the software product to be tested specifically includes:
and acquiring the interface information of the software product based on a packet capturing mode.
Optionally, before the step of obtaining the interface information of the software product to be tested, the method further includes:
initializing the software product to establish initial data of account information and/or setting information of the software product.
The utility model also provides a test system based on the business model, which comprises:
the acquisition unit is used for acquiring interface information of the software product to be tested;
the construction unit is used for constructing a corresponding service model according to the service logic rule of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product;
and the execution unit is used for executing the test case through the service model and receiving service data fed back by the software product based on the test case.
In addition, a storage medium and a computer device are provided, the storage medium is used for storing a computer program for executing the test method based on the service model.
The computer device comprises a storage medium, a processor and a computer program stored on the storage medium and capable of running on the processor, wherein the processor realizes the testing method based on the service model when executing the computer program.
According to the test method and the test system based on the service model, the interface information of the software product to be tested is obtained, and then the service model for executing the test case of the software product is generated according to the interface information and the service logic rule of the software product; and automatically executing the test cases of the software products by using the constructed service model to obtain the fed-back service data. Therefore, the invention can solve the problem of labor cost caused by repeated modification of the automatic script due to manual data establishment or page change, and effectively improves the test efficiency.
Drawings
FIG. 1 is a flowchart illustrating steps of the testing method based on the business model according to an embodiment of the present invention;
FIG. 2 is a flowchart illustrating optional steps for constructing a model according to the testing method based on a business model according to an embodiment of the present invention;
FIG. 3 is a flowchart illustrating optional steps performed by the testing method based on business model according to an embodiment of the present invention;
FIG. 4 is a schematic block diagram of a test system based on a business model according to an embodiment of the present invention;
FIG. 5 is a schematic block diagram of an alternative construction unit of the test system based on the business model according to an embodiment of the present invention;
fig. 6 is a schematic block diagram of an alternative configuration of the execution unit of the service model-based test system according to an embodiment of the present invention.
Detailed Description
The present invention will be described in further detail with reference to the drawings and examples, in order to make the objects, technical solutions and advantages of the present invention more apparent. It should be understood that the specific embodiments described herein are for purposes of illustration only and are not intended to limit the scope of the invention.
It should be noted that references in the specification to "one embodiment," "an example embodiment," etc., indicate that the embodiment described may include a particular feature, structure, or characteristic, but every embodiment may not necessarily include the particular feature, structure, or characteristic. Furthermore, such phrases are not intended to refer to the same embodiment. Further, when a particular feature, structure, or characteristic is described in connection with an embodiment, it is submitted that it is within the knowledge of one skilled in the art to effect such feature, structure, or characteristic in connection with other embodiments whether or not explicitly described.
Furthermore, certain terms are used throughout the specification and the claims that follow to refer to particular components or parts, and it will be understood by those of ordinary skill in the art that manufacturers may refer to a component or part by different terms or terminology. The present specification and the following claims do not take the form of an element or component with the difference in name, but rather take the form of an element or component with the difference in function as a criterion for distinguishing. In the following description and in the claims, the terms "include" and "comprise" are used in an open-ended fashion, and thus should be interpreted to mean "include, but not limited to. The term "coupled," as used herein, includes any direct or indirect electrical connection. Indirect electrical connection means include connection via other devices.
Fig. 1 shows a test method based on a service model according to an embodiment of the present invention, including the following steps:
s101: and acquiring interface information of the software product to be tested. Wherein the software product refers to an information processing program and related documents and data. Software products include computer software products, information systems, and embedded software products. An embedded software product refers to a software product which is embedded in and sold with computer hardware and machine equipment and forms part of the computer hardware and machine equipment.
The interface test of the embodiment is based on the interface test of the software product, and the interface test mainly transmits data to be tested through a URL (uniform resource locator) like a server or other modules and the like, so as to judge whether the feedback response data is expected data or not. And the interface information comprises interface address, interface configuration parameters and other information related to the interface. The embodiment specifically obtains all interface information of the software product.
S102: constructing a corresponding service model according to the service logic rules of the software product and the interface information; the business logic rule is a test logic rule of a test case of a software product. Namely, the embodiment combines the test logic rule and the corresponding interface information of the test case of the software product to be tested to construct and generate a service model special for executing the test case; the business models corresponding to different software products are different, and the business models corresponding to different test cases of the same software product are different.
Optionally, step S102 further includes: and establishing the association information between the service model and the corresponding test case. Accordingly, the business model is specially used for executing the corresponding test cases based on the association information; further, the service model may store the association information as an identity.
S103: executing the test case through the service model, and receiving service data fed back by the software product based on the test case. The test case is automatically executed according to the constructed and generated service model and the interface information in the mode of interface test, and further the service data fed back based on interface protocol transmission is received; and judging whether the service data is expected data according to the acquired service data so as to determine the test result of the software product. In a specific implementation, the service model automatically invokes a corresponding interface transmission protocol based on the interface information and the service logic rule, thereby obtaining corresponding service data. According to the invention, the automatic test model is designed and constructed by utilizing the interface information and business logic rules of the software product to be tested, so that the labor cost expenditure caused by repeated modification of the automatic script due to manual data establishment and page change can be effectively solved, and the test efficiency is effectively improved.
Referring to fig. 2, in an alternative embodiment, step S102 specifically includes:
s1021: and determining the protocol transmission sequence among the interfaces of the software product based on the business logic rule.
S1022: and constructing and generating the service model according to the interface information and the protocol transmission sequence.
Each software product has its own specific business logic, e.g., registered users click on registration and then jump to a page where the information needed for registration is filled in. The testing process of the software product is to determine whether the expected effect is achieved after corresponding operation flow is carried out according to the business logic of the software product; different software testing processes are different, so the service model constructed by the embodiment is special for the testing cases of the corresponding software products. The test flow of the control software product may be implemented based on automatic control of interface protocol transmission, that is, the business model adopted in the embodiment is a test model for automatically executing interface protocol transmission, and the protocol transmission sequence between the interfaces needs to be determined according to the business logic rule of the software product to be tested in the construction process, for example, the test process of the pannier software is generally "joining shopping cart-purchasing-paying" or "searching for objects-obtaining results".
Of course, if one test case corresponds to one service model, if one software product has a plurality of test cases, the service models corresponding to the test cases one by one need to be built.
Referring to fig. 3, in an alternative embodiment, step S103 specifically includes:
s1031: and automatically sending protocol information among the interfaces through the service model. Optionally, step S1031 specifically includes: code-based execution or automation of test tools by the business model to send the protocol information. The realization of each service scene is the product after the different interfaces are combined with each other, so the service model of the embodiment can realize the transmission of the corresponding interface information through an automatic test tool written by codes or mature.
S1032: and acquiring service data fed back by the software product based on the protocol information transmission response.
Specifically, in this embodiment, the protocol transmission between the interfaces is automatically controlled by using the service model that is created and generated, so as to obtain the service data that is fed back by the protocol transmission based on the interface information, so as to implement the execution of the test case.
In one embodiment, step S101 specifically includes: the interface information on the interface document of the software product is obtained. In the development of a project, front and back ends of a Web project are separately developed, APP (application) development is required to be commonly defined by front and back end engineers, an interface document is written, and then people develop according to the interface document and maintain until the project is finished; which is used to describe documents of interface information provided by the system. The present embodiment specifically captures all of the interface information for the software product from the interface document.
In another embodiment, the step S101 specifically includes: and acquiring the interface information of the software product based on a packet capturing mode. The packet capturing means that the data packets transmitted and received by the network transmission are intercepted, retransmitted, edited, transferred and stored; the embodiment can specifically realize the acquisition of the interface information through the existing packet grabbing tool.
Optionally, step S101 further includes: initializing the software product to establish initial data of account information and/or setting information of the software product. The initialized software product does not have account information and initially set business information and/or cache information, and in this case, the test case of the software product is executed through the business model, so that data can be directly created, and the need of manually creating data one by one is eliminated. Of course, in other embodiments, the software product may execute the corresponding business model without initialization.
Fig. 4 shows a test system 100 based on a business model according to an embodiment of the present invention, where the test system 100 is specifically applied to performing a software test on a software product, and includes an obtaining unit 10, a building unit 20, and an executing unit 30, where:
the acquiring unit 10 is used for acquiring interface information of a software product to be tested; the construction unit 20 is configured to construct a corresponding service model according to the service logic rule of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product; the execution unit 30 is configured to execute the test case through the service model, and receive service data fed back by the software product based on the test case.
The interface test of the embodiment is based on the interface test of the software product, and the interface test mainly transmits data to be tested through a URL (uniform resource locator) like a server or other modules and the like, so as to judge whether the feedback response data is expected data or not. The invention combines the interface information of the software product with the business logic rule of the test case to construct and generate the business model, and further automatically executes the corresponding test case by using the business model, thereby effectively solving the manpower cost expenditure caused by repeated modification of the automatic script due to manual data establishment and page change and effectively improving the test efficiency.
Referring to fig. 5, in an alternative embodiment, the construction unit 20 specifically includes a determination subunit 21 and a construction subunit 22, where:
a determining subunit 21 is configured to determine, based on the service logic rule, a protocol transmission order between the interfaces of the software product; the construction subunit 22 is configured to construct and generate the service model according to the interface information and the protocol transmission sequence.
Referring to fig. 6, in an alternative embodiment, the execution unit 30 specifically includes a protocol transmission subunit 31 and a data acquisition subunit 32, where:
the protocol transmission subunit 31 is configured to automatically send protocol information between the interfaces through the service model; the data acquisition subunit 32 is configured to acquire the service data fed back by the software product based on the protocol information transmission response.
Optionally, the protocol transmission subunit 31 is specifically configured to: code-based execution or automation of test tools by the business model to send the protocol information. The realization of each service scene is the product after the different interfaces are combined with each other, so the service model of the embodiment can realize the transmission of the corresponding interface information through an automatic test tool written by codes or mature.
In one embodiment, the obtaining unit 10 is specifically configured to: the interface information on the interface document of the software product is obtained.
In another embodiment, the obtaining unit 10 is specifically configured to: and acquiring the interface information of the software product based on a packet capturing mode.
Optionally, an initializing unit is further included for initializing the software product to establish initial data of account information and/or setting information of the software product. The software product to be tested is initialized through the initialization unit, only account and set initial information exist in the obtained initial data, and in this case, protocol transmission is automatically executed through the service model, so that the data can be directly created, and the manual one-by-one data establishment is not needed. Of course, in other embodiments, the software product may execute the corresponding business model without initialization.
After the software product is initialized, the embodiment constructs a service model to realize that the interface transmits corresponding protocol information, so as to form service data required by the software product.
Optionally, the system further comprises a correlation unit for establishing correlation information between the service model and the corresponding test case. Accordingly, the business model is specially used for executing the corresponding test cases based on the association information; further, the service model may store the association information as an identity.
The present invention also provides a storage medium storing a computer program for a business model based test method as described in fig. 1 to 3. Such as computer program instructions, which, when executed by a computer, may invoke or provide methods and/or techniques in accordance with the present application. Program instructions for invoking the methods of the present application may be stored in fixed or removable storage media and/or transmitted via a data stream in a broadcast or other signal bearing medium and/or stored within a storage medium of a computer device operating according to the program instructions. Here, an embodiment according to the present application comprises a computer device of a business model based test system as shown in fig. 4, preferably comprising a storage medium for storing a computer program and a processor for executing the computer program, wherein the computer program, when executed by the processor, triggers the computer device to perform the method and/or the solution according to the previous embodiments.
It should be noted that the present application may be implemented in software and/or a combination of software and hardware, for example, using Application Specific Integrated Circuits (ASIC), a general purpose computer or any other similar hardware device. In one embodiment, the software program of the present application may be executed by a processor to implement the above steps or functions. Likewise, the software programs of the present application (including associated data structures) may be stored on a computer readable recording medium, such as RAM memory, magnetic or optical drive or diskette and the like. In addition, some steps or functions of the present application may be implemented in hardware, for example, as circuitry that cooperates with the processor to perform various steps or functions.
The method according to the invention may be implemented as a computer implemented method on a computer, or in dedicated hardware, or in a combination of both. Executable code or parts thereof for the method according to the invention may be stored on a computer program product. Examples of computer program products include memory devices, optical storage devices, integrated circuits, servers, online software, and the like. Preferably, the computer program product comprises non-transitory program code means stored on a computer readable medium for performing the method according to the invention when said program product is executed on a computer.
In a preferred embodiment the computer program comprises computer program code means adapted to perform all the steps of the method according to the invention when the computer program is run on a computer. Preferably, the computer program is embodied on a computer readable medium.
In summary, according to the test method and the system based on the service model provided by the invention, the interface information of the software product to be tested is obtained, and then the service model for executing the test case of the software product is generated according to the interface information and the service logic rule of the software product; and automatically executing the test cases of the software products by using the constructed service model to obtain the fed-back service data. Therefore, the invention can solve the problem of labor cost caused by repeated modification of the automatic script due to manual data establishment or page change, and effectively improves the test efficiency.
Of course, the present invention is capable of other various embodiments and its several details are capable of modification and variation in light of the present invention, as will be apparent to those skilled in the art, without departing from the spirit and scope of the invention as defined in the appended claims.
The invention also provides A1, a test method based on the service model, comprising the following steps:
acquiring interface information of a software product to be tested;
constructing a corresponding service model according to the service logic rules of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product;
executing the test case through the service model, and receiving service data fed back by the software product based on the test case.
A2, according to the testing method based on the service model of A1, the step of constructing a corresponding service model according to the service logic rule of the software product and the interface information specifically comprises the following steps:
determining a protocol transmission sequence among interfaces of the software product based on the business logic rule;
and constructing and generating the service model according to the interface information and the protocol transmission sequence.
A3, according to the testing method based on the service model of A2, the step of executing the test case through the service model and receiving the service data fed back by the software product based on the test case specifically comprises the following steps:
automatically sending protocol information among the interfaces through the service model;
and acquiring the service data fed back by the software product based on the protocol information transmission response.
A4, according to the testing method based on the service model of A3, the step of automatically sending the protocol information between the interfaces through the service model specifically comprises the following steps:
code-based execution or automation of test tools by the business model to send the protocol information.
A5, according to the testing method based on the business model of A1, the step of obtaining the interface information of the software product to be tested specifically includes:
the interface information on the interface document of the software product is obtained.
A6, according to the testing method based on the business model of A1, the step of obtaining the interface information of the software product to be tested specifically includes:
and acquiring the interface information of the software product based on a packet capturing mode.
A7, according to the testing method based on the service model of A1, before the step of obtaining the interface information of the software product to be tested, the method further comprises:
initializing the software product to establish initial data of account information and/or setting information of the software product.
A8, after the step of constructing the corresponding service model according to the service logic rule of the software product and the interface information according to the service model-based test method of A1, the method further comprises:
and establishing association information between the service model and the corresponding test case.
Also provided is a B9, a test system based on a service model, comprising:
the acquisition unit is used for acquiring interface information of the software product to be tested;
the construction unit is used for constructing a corresponding service model according to the service logic rule of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product;
and the execution unit is used for executing the test case through the service model and receiving service data fed back by the software product based on the test case.
B10, the test system based on the service model according to B9, wherein the construction unit specifically comprises:
a determining subunit, configured to determine a protocol transmission sequence between interfaces of the software product based on the service logic rule;
and the construction subunit is used for constructing and generating the service model according to the interface information and the protocol transmission sequence.
B11, the test system based on the service model according to B10, wherein the execution unit specifically comprises:
a protocol transmission subunit, configured to automatically send protocol information between the interfaces through the service model;
and the data acquisition subunit is used for acquiring the service data fed back by the software product based on the protocol information transmission response.
B12, the test system based on a service model according to B11, wherein the protocol transmission subunit is specifically configured to:
code-based execution or automation of test tools by the business model to send the protocol information.
B13, the test system based on the service model according to B9, wherein the obtaining unit is specifically configured to:
the interface information on the interface document of the software product is obtained.
B14, the test system based on the service model according to B9, wherein the obtaining unit is specifically configured to:
and acquiring the interface information of the software product based on a packet capturing mode.
B15, the test system based on the service model according to B9 further comprises:
and the initialization unit is used for initializing the software product so as to establish initial data of account information and/or setting information of the software product.
B16, the service model-based test system according to B9, further comprising:
and the association unit is used for establishing association information between the service model and the corresponding test case.
There is also provided C17, a storage medium storing a computer program for executing the business model-based test method of any one of A1 to A8.
Also provided is a D18, a computer device comprising a storage medium, a processor and a computer program stored on the storage medium and executable on the processor, the processor implementing the business model-based test method of any one of A1 to A8 when executing the computer program.

Claims (10)

1. The test method based on the service model is characterized by comprising the following steps:
acquiring interface information of a software product to be tested;
constructing a corresponding service model according to the service logic rules of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product;
executing the test case through the service model, and receiving service data fed back by the software product based on the test case.
2. The business model-based testing method according to claim 1, wherein the step of constructing a corresponding business model according to the business logic rules of the software product and the interface information specifically comprises:
determining a protocol transmission sequence among interfaces of the software product based on the business logic rule;
and constructing and generating the service model according to the interface information and the protocol transmission sequence.
3. The method for testing based on the service model according to claim 2, wherein the step of executing the test case through the service model and receiving the service data fed back by the software product based on the test case specifically comprises:
automatically sending protocol information among the interfaces through the service model;
and acquiring the service data fed back by the software product based on the protocol information transmission response.
4. A method of testing based on a business model according to claim 3, wherein said step of automatically transmitting protocol information between said interfaces through said business model comprises:
code-based execution or automation of test tools by the business model to send the protocol information.
5. The business model-based testing method according to claim 1, wherein the step of obtaining interface information of the software product to be tested specifically comprises:
the interface information on the interface document of the software product is obtained.
6. The business model-based testing method according to claim 1, wherein the step of obtaining interface information of the software product to be tested specifically comprises:
and acquiring the interface information of the software product based on a packet capturing mode.
7. The business model-based testing method according to claim 1, wherein before the step of obtaining interface information of the software product to be tested, further comprising:
initializing the software product to establish initial data of account information and/or setting information of the software product.
8. A business model-based test system, comprising:
the acquisition unit is used for acquiring interface information of the software product to be tested;
the construction unit is used for constructing a corresponding service model according to the service logic rule of the software product and the interface information; wherein, the business logic rule is a test logic rule of a test case of the software product;
and the execution unit is used for executing the test case through the service model and receiving service data fed back by the software product based on the test case.
9. A storage medium storing a computer program for executing the business model-based test method of any one of claims 1 to 7.
10. A computer device comprising a storage medium, a processor and a computer program stored on the storage medium and executable on the processor, characterized in that the processor implements the business model based test method of any of claims 1-7 when executing the computer program.
CN202111536902.3A 2021-12-15 2021-12-15 Test method, system, storage medium and computer equipment based on business model Pending CN116340126A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111536902.3A CN116340126A (en) 2021-12-15 2021-12-15 Test method, system, storage medium and computer equipment based on business model

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111536902.3A CN116340126A (en) 2021-12-15 2021-12-15 Test method, system, storage medium and computer equipment based on business model

Publications (1)

Publication Number Publication Date
CN116340126A true CN116340126A (en) 2023-06-27

Family

ID=86879170

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111536902.3A Pending CN116340126A (en) 2021-12-15 2021-12-15 Test method, system, storage medium and computer equipment based on business model

Country Status (1)

Country Link
CN (1) CN116340126A (en)

Similar Documents

Publication Publication Date Title
CN105335293B (en) A kind of automatization test system and method based on interface concurrent
US10204035B1 (en) Systems, methods and devices for AI-driven automatic test generation
CN109582588B (en) Test case generation method and device and electronic equipment
US20060265475A9 (en) Testing web services as components
EP1576487B1 (en) Web server hit multiplier and redirector
US20030182408A1 (en) Load test system for a server and method of use
CN107133161B (en) Method and device for generating client performance test script
CN106484611B (en) Fuzzy test method and device based on automatic protocol adaptation
CN111211934B (en) Cluster remote communication test method and system
CN108111364B (en) Service system testing method and device
CN110750458A (en) Big data platform testing method and device, readable storage medium and electronic equipment
CN106209503B (en) RPC interface test method and system
CN102609472A (en) Method and system for implementing performance test of distributed database system
CN111104336A (en) Online service interface testing method and device based on container and VNC
KR101982308B1 (en) Apparatus and method for protocol modeling
CN110209565A (en) A kind of metadata schema adjustment method and its device
CN109547430A (en) A kind of exploitation service gateway system and exploitation gateway
CN113360413A (en) Code testing method and device
CN113641742A (en) Data extraction method, device, equipment and storage medium
CN116340126A (en) Test method, system, storage medium and computer equipment based on business model
CN114285779B (en) Processing method, device and system of test request
CN113742408B (en) Protobuf protocol dynamic analysis-based data interaction method
CN113495723B (en) Method, device and storage medium for calling functional component
CN113204449B (en) Session backup method, computer-readable storage medium and terminal device
CN113973060A (en) Internet of things simulation method, device and system and storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication