CN110597725B - Mysql simulation return method, device and equipment - Google Patents

Mysql simulation return method, device and equipment Download PDF

Info

Publication number
CN110597725B
CN110597725B CN201910887091.8A CN201910887091A CN110597725B CN 110597725 B CN110597725 B CN 110597725B CN 201910887091 A CN201910887091 A CN 201910887091A CN 110597725 B CN110597725 B CN 110597725B
Authority
CN
China
Prior art keywords
mysql
database
mode
recording
return
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.)
Active
Application number
CN201910887091.8A
Other languages
Chinese (zh)
Other versions
CN110597725A (en
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.)
Zhejiang Nuonuo Network Technology Co ltd
Original Assignee
Zhejiang Nuonuo Network Technology 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 Zhejiang Nuonuo Network Technology Co ltd filed Critical Zhejiang Nuonuo Network Technology Co ltd
Priority to CN201910887091.8A priority Critical patent/CN110597725B/en
Publication of CN110597725A publication Critical patent/CN110597725A/en
Application granted granted Critical
Publication of CN110597725B publication Critical patent/CN110597725B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

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/3684Test management for test design, e.g. generating new test cases
    • 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
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/21Design, administration or maintenance of databases
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/25Integrating or interfacing systems involving database management systems
    • G06F16/252Integrating or interfacing systems involving database management systems between a Database Management System and a front-end application
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Data Mining & Analysis (AREA)
  • Debugging And Monitoring (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The application discloses a simulation return method of Mysql, which records a database data preparation process when a database operation is performed for the first time, and when the database operation is performed subsequently, the database data is not prepared again, but is determined according to a recording result, so that the original database data is always consistent in each database operation. On one hand, the interference of data change to the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the database test efficiency is improved. In addition, the application also provides a Mysql simulation return device, mysql simulation return equipment and a readable storage medium, and the technical effects of the method correspond to those of the method.

Description

Mysql simulation return method, device and equipment
Technical Field
The present invention relates to the field of software testing, and in particular, to a method, an apparatus, a device, and a readable storage medium for Mysql analog return.
Background
When testing a database, related database operations are needed, and part of database operations may change the data in the database, affecting the test results of the subsequent test process. The traditional solution is to repeatedly execute the initialization operation on database data in the test process, and the solution has the defects of large workload, time and labor waste and low test efficiency.
Disclosure of Invention
The purpose of the application is to provide a simulation return method, a device, equipment and a readable storage medium of Mysql, which are used for solving the problem that the test efficiency is low because a database is required to be repeatedly initialized by a traditional database test scheme. The specific scheme is as follows:
in a first aspect, the present application provides a method for returning Mysql in an analog manner, including:
acquiring an sql statement for testing the Mysql database;
judging whether the current mode is a recording mode or a playback mode according to preset configuration information;
if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to be used as a data reading result;
if the current mode is a playback mode, generating an object with the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result;
and executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database.
Preferably, before the acquiring the sql statement for testing the Mysql database, the method includes:
and modifying the member variable and the static variable in the return value of the target interface function into public variables.
Preferably, the executing the corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database includes:
executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database, wherein the database operation comprises any one or more of the following: creating, updating, deleting and searching.
Preferably, after determining whether the current mode is the recording mode or the playback mode according to the preset configuration information, the method further includes:
and if the current mode is not the recording mode or the playback mode, calling the target interface function to read the data of the Mysql database to obtain a return value to be used as a data reading result.
Preferably, the target interface function is execuxelnternal.
In a second aspect, the present application provides an analog return device of Mysql, comprising:
statement acquisition module: the method comprises the steps of acquiring an sql statement for testing a Mysql database;
and a mode judging module: the method comprises the steps of respectively judging whether a current mode is a recording mode or a playback mode according to preset configuration information;
and a recording module: if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to be used as a data reading result;
and a playback module: if the current mode is a playback mode, generating an object of the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result;
and an operation module: and the method is used for executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database.
In a third aspect, the present application provides an analog return device of Mysql, comprising:
a memory: for storing a computer program;
a processor: steps for executing the computer program to implement a Mysql analogue return method as described above.
In a fourth aspect, the present application provides a readable storage medium having stored thereon a computer program for implementing the steps of a Mysql analogue return method as described above when executed by a processor.
The scheme of the simulation return method of Mysql provided by the application comprises the following steps: acquiring an sql statement for testing the Mysql database; judging whether the current mode is a recording mode or a playback mode according to preset configuration information; if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to be used as a data reading result; if the current mode is a playback mode, generating an object of the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result; and executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database. Therefore, according to the scheme, when the database operation is performed for the first time, the database data preparation process is recorded, and when the database operation is performed again subsequently, the database data is not prepared again, but is determined according to the recording result, so that the original database data is ensured to be consistent all the time in each database operation. On one hand, the interference of data change to the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the database test efficiency is improved.
In addition, the application further provides an analog return device, an apparatus and a readable storage medium of Mysql, and the technical effects of the method correspond to those of the method, and are not repeated here.
Drawings
For a clearer description of embodiments of the present application or of the prior art, the drawings that are used in the description of the embodiments or of the prior art will be briefly described, it being apparent that the drawings in the description that follow are only some embodiments of the present application, and that other drawings may be obtained from these drawings by a person of ordinary skill in the art without inventive effort.
FIG. 1 is a flowchart of an implementation of an embodiment of a method for analog return of Mysql provided in the present application;
FIG. 2 is a flowchart illustrating an implementation of a second embodiment of a Mysql return-simulation method provided in the present application;
FIG. 3 is a functional block diagram of an embodiment of an analog return device of Mysql provided herein;
fig. 4 is a schematic structural diagram of an embodiment of a Mysql analog return device provided in the present application.
Detailed Description
The core of the application is to provide a simulation return method, device and equipment of Mysql and a readable storage medium, so that the interference of data change on a test result and huge workload brought by repeated initialization of a database are avoided, and finally the test efficiency of the database is improved.
In order to provide a better understanding of the present application, those skilled in the art will now make further details of the present application with reference to the drawings and detailed description. It will be apparent that the described embodiments are only some, but not all, of the embodiments of the present application. All other embodiments, which can be made by one of ordinary skill in the art without undue burden from the present disclosure, are within the scope of the present disclosure.
An embodiment one of the Mysql simulation return method provided in the present application is described below, referring to fig. 1, where the embodiment one includes:
s101, acquiring an sql statement for testing a Mysql database;
in this embodiment, the client needs to package the sql statement and send it to the Mysql database, and parse the returned content of the Mysql database. The purpose of this embodiment is to simulate the return result of the interface function between the client and Mysql according to the return value of the interface function, so as to ensure that the data obtained from the Mysql database in each test process is consistent. Specifically, after the sql statement is packaged, and before the sql statement is sent to the Mysql database, the implementation procedure of this embodiment is executed.
S102, judging whether the current mode is a recording mode or a playback mode according to preset configuration information;
specifically, in this embodiment, configuration information is preset, where the configuration may be understood as a flag, and after determining the sql statement for testing, a subsequent processing flow is determined according to the flag. Different configuration information indicates different processing modes, in this embodiment, the processing modes at least include a recording mode and a playback mode, where the recording mode refers to a result returned by an interface function between the recording client and the Mysql database after operation; and the playback mode is to simulate and generate the return result of the interface function according to the recording result in the recording mode.
S103, if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to serve as a data reading result;
s104, if the current mode is a playback mode, generating an object with the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result;
s105, executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database.
The embodiment provides a simulation return method of Mysql, which comprises the following steps: acquiring an sql statement for testing the Mysql database; judging whether the current mode is a recording mode or a playback mode according to preset configuration information; if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to be used as a data reading result; if the current mode is a playback mode, generating an object of the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result; and executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database. Therefore, according to the scheme, when the database operation is performed for the first time, the database data preparation process is recorded, and when the database operation is performed again subsequently, the database data is not prepared again, but is determined according to the recording result, so that the original database data is ensured to be consistent all the time in each database operation. On one hand, the interference of data change to the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the database test efficiency is improved.
The following begins to describe in detail the second embodiment of the simulation return method of Mysql provided in the present application, where the second embodiment is implemented based on the first embodiment, and is expanded to a certain extent based on the first embodiment.
Specifically, since the interactive function of Connect and Mysql is encapsulated as execu i n ternal, the two pairs of execu i ternal in the embodiment may be modified before and after each other, that is, the target interface function in the embodiment is execu i ternal.
Referring to fig. 2, the second embodiment specifically includes:
s201, packaging an sql statement for testing a Mysql database; s202, judging whether a current mode is a recording mode according to preset configuration information when the sql operation occurs and before the sql operation runs to an execueelnternal function; if yes, go to S203, otherwise go to S204;
s203, calling the target interface function to read the data of the Mysql database, and obtaining and recording a return value to serve as a data reading result;
s204, judging whether the current mode is a playback mode according to preset configuration information; if yes, go to S205, otherwise go to S206;
s205, skipping operation of the execueelnternal function when the sql operation occurs and before the execution of the execueelnternal function, and generating an object with the same class as the return value of the execueelnternal function; assigning a value to the object to obtain a data reading result;
specifically, in this embodiment, both the private variable and the static variable of the return value of the execueelnternal function are modified in advance to be public variables, so that the return value is saved in S203, and the object is assigned in S205.
S206, calling an executeinternational function to read the data of the Mysql database, and obtaining a return value to be used as a data reading result;
s207, executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database, wherein the database operation comprises any one or more of the following: creating, updating and deleting.
Specifically, when the return value of the function is recorded, the returned structure or class is modified, all member variable static variables and the like in the modified structure or class are changed into public variables, and the public variables are directly accessed and stored. When the return value is simulated, an object of the same class as the return value of the execueelnternal function is generated, and all member variables in the class, static variables and the like are set as public variables to be assigned.
Therefore, according to the simulation return method of Mysql provided by the embodiment, when the database operation is performed for the first time, the database data preparation process is recorded, and when the database operation is performed subsequently, the database data is not prepared again, but is determined according to the recording result, so that the original database data is ensured to be consistent all the time in each database operation. On one hand, the interference of data change to the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the database test efficiency is improved.
The following describes a Mysql simulation return device provided in the embodiment of the present application, and the Mysql simulation return device described below and the Mysql simulation return method described above may be referred to correspondingly.
As shown in fig. 3, the apparatus includes:
statement acquisition module 301: the method comprises the steps of acquiring an sql statement for testing a Mysql database;
mode determination module 302: the method comprises the steps of respectively judging whether a current mode is a recording mode or a playback mode according to preset configuration information;
recording module 303: if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to be used as a data reading result;
playback module 304: if the current mode is a playback mode, generating an object of the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result;
operation module 305: and the method is used for executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database.
The simulation return device of Mysql in this embodiment is used to implement the foregoing simulation return method of Mysql, so that the specific implementation in the device can be seen from the foregoing example portions of the simulation return method of Mysql, for example, the sentence acquisition module 301, the mode judgment module 302, the recording module 303, the playback module 304, and the operation module 305, which are respectively used to implement steps S101, S102, S103, S104, and S105 in the foregoing simulation return method of Mysql. Therefore, the detailed description will be omitted herein with reference to the accompanying drawings, which illustrate examples of the respective parts.
In addition, since the analog return device of Mysql of the present embodiment is used to implement the foregoing analog return method of Mysql, the function of the analog return device of the present embodiment corresponds to that of the foregoing method, and thus will not be described herein.
In addition, the application further provides an analog return device of Mysql, as shown in fig. 4, including:
memory 100: for storing a computer program;
processor 200: steps for executing the computer program to implement a Mysql simulated return method as described hereinbefore.
Finally, the present application also provides a readable storage medium having stored thereon a computer program for implementing the steps of a Mysql analog return method as described above when executed by a processor.
The Mysql simulation return device and the readable storage medium of the present embodiment are used to implement a Mysql simulation return method described above, so that the detailed description of the device and the readable storage medium can be found in the foregoing examples of a Mysql simulation return method, which is not described herein. In addition, since the analog return device and the readable storage medium of Mysql in this embodiment are used to implement the foregoing analog return method of Mysql, the functions thereof correspond to those of the foregoing method, and will not be described herein.
In this specification, each embodiment is described in a progressive manner, and each embodiment is mainly described in a different point from other embodiments, so that the same or similar parts between the embodiments are referred to each other. For the device disclosed in the embodiment, since it corresponds to the method disclosed in the embodiment, the description is relatively simple, and the relevant points refer to the description of the method section.
The steps of a method or algorithm described in connection with the embodiments disclosed herein may be embodied directly in hardware, in a software module executed by a processor, or in a combination of the two. The software modules may be disposed in Random Access Memory (RAM), memory, read Only Memory (ROM), electrically programmable ROM, electrically erasable programmable ROM, registers, hard disk, a removable disk, a CD-ROM, or any other form of storage medium known in the art.
The foregoing has outlined rather broadly the more detailed description of the present application and the principles and embodiments of the present application have been presented in terms of specific examples, which are provided herein to assist in the understanding of the method and core concepts of the present application; meanwhile, as those skilled in the art will have modifications in the specific embodiments and application scope in accordance with the ideas of the present application, the present description should not be construed as limiting the present application in view of the above.

Claims (8)

1. A simulated return method of Mysql, comprising:
acquiring an sql statement for testing the Mysql database;
judging whether the current mode is a recording mode or a playback mode according to preset configuration information;
if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to be used as a data reading result;
if the current mode is a playback mode, generating an object with the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result;
and executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database.
2. The method of claim 1, comprising, prior to the retrieving the sql statement for testing the Mysql database:
and modifying the member variable and the static variable in the return value of the target interface function into public variables.
3. The method of claim 1, wherein the performing a corresponding database operation on the data read result according to the sql statement to obtain a test result of the Mysql database comprises:
executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database, wherein the database operation comprises any one or more of the following: creating, updating, deleting and searching.
4. A method according to any one of claims 1-3, further comprising, after said determining whether the current mode is the recording mode or the playback mode, respectively, according to the preset configuration information:
and if the current mode is not the recording mode or the playback mode, calling the target interface function to read the data of the Mysql database to obtain a return value to be used as a data reading result.
5. The method of claim 4, wherein the target interface function is execuxelnternal.
6. An analog return device of Mysql, comprising:
statement acquisition module: the method comprises the steps of acquiring an sql statement for testing a Mysql database;
and a mode judging module: the method comprises the steps of respectively judging whether a current mode is a recording mode or a playback mode according to preset configuration information;
and a recording module: if the current mode is a recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value to be used as a data reading result;
and a playback module: if the current mode is a playback mode, generating an object of the same class as the return value of the target interface function, and assigning a value to the object to obtain a data reading result;
and an operation module: and the method is used for executing corresponding database operation on the data reading result according to the sql statement to obtain a test result of the Mysql database.
7. An analog return device of Mysql, comprising:
a memory: for storing a computer program;
a processor: steps for executing the computer program to implement a Mysql analog return method according to any of claims 1-5.
8. A readable storage medium, characterized in that the readable storage medium has stored thereon a computer program for implementing the steps of a Mysql analog return method according to any of claims 1-5 when being executed by a processor.
CN201910887091.8A 2019-09-19 2019-09-19 Mysql simulation return method, device and equipment Active CN110597725B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910887091.8A CN110597725B (en) 2019-09-19 2019-09-19 Mysql simulation return method, device and equipment

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910887091.8A CN110597725B (en) 2019-09-19 2019-09-19 Mysql simulation return method, device and equipment

Publications (2)

Publication Number Publication Date
CN110597725A CN110597725A (en) 2019-12-20
CN110597725B true CN110597725B (en) 2023-05-05

Family

ID=68861114

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910887091.8A Active CN110597725B (en) 2019-09-19 2019-09-19 Mysql simulation return method, device and equipment

Country Status (1)

Country Link
CN (1) CN110597725B (en)

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103440200A (en) * 2013-09-05 2013-12-11 北京航空航天大学 High-instantaneity and large-data-volume test playback method based on double operating systems
CN109189665A (en) * 2018-08-01 2019-01-11 阿里巴巴集团控股有限公司 Data recording, data readback and the method and device tested automatically
CN109815118A (en) * 2018-12-14 2019-05-28 深圳壹账通智能科技有限公司 Data base management method and device, electronic equipment and computer readable storage medium
CN110232024A (en) * 2019-05-26 2019-09-13 必成汇(成都)科技有限公司 Software automated testing frame and test method

Family Cites Families (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1160906C (en) * 1999-11-05 2004-08-04 中兴通讯股份有限公司 Analogue web element testing method based on message recording and playback
CN1409245A (en) * 2001-09-25 2003-04-09 维音数码(上海)有限公司 Check-up and replay device
US8386852B2 (en) * 2002-11-05 2013-02-26 Hewlett-Packard Development Company, L.P. Automated recording and replaying of software regression tests
CN1328689C (en) * 2002-11-22 2007-07-25 中兴通讯股份有限公司 Automatic test method for system products
US7890457B2 (en) * 2006-10-20 2011-02-15 Oracle International Corporation Transactionally consistent database workload replay
US8326816B2 (en) * 2010-05-06 2012-12-04 Oracle International Corporation Fine grain synchronization for database replay
CN105512017A (en) * 2014-09-22 2016-04-20 阿里巴巴集团控股有限公司 Database compatibility detection method and device
CN107102934B (en) * 2016-02-22 2020-12-04 阿里巴巴集团控股有限公司 Method and equipment for replaying binary log of relational database
CN107122289B (en) * 2016-02-25 2021-01-15 创新先进技术有限公司 Method, device and system for system regression testing
US10592528B2 (en) * 2017-02-27 2020-03-17 Sap Se Workload capture and replay for replicated database systems
CN108829802B (en) * 2018-06-06 2020-11-13 中国人民银行清算总中心 Associated log playback method and device
CN109634867B (en) * 2018-12-18 2022-02-11 宁夏隆基宁光仪表股份有限公司 Software testing method and device based on data simulation system and storage medium
CN109710699B (en) * 2019-01-02 2021-01-22 神州数码融信软件有限公司 Recording method and playback method of transaction data

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103440200A (en) * 2013-09-05 2013-12-11 北京航空航天大学 High-instantaneity and large-data-volume test playback method based on double operating systems
CN109189665A (en) * 2018-08-01 2019-01-11 阿里巴巴集团控股有限公司 Data recording, data readback and the method and device tested automatically
CN109815118A (en) * 2018-12-14 2019-05-28 深圳壹账通智能科技有限公司 Data base management method and device, electronic equipment and computer readable storage medium
CN110232024A (en) * 2019-05-26 2019-09-13 必成汇(成都)科技有限公司 Software automated testing frame and test method

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
Benchmark Factory 使用 简介之Capture and Replay Oracle Workload;GimiZhang;《https://blog.csdn.net/GimiZhang/article/details/78164183》;全文 *

Also Published As

Publication number Publication date
CN110597725A (en) 2019-12-20

Similar Documents

Publication Publication Date Title
CN110008113B (en) Test method and device and electronic equipment
CN107122368B (en) Data verification method and device and electronic equipment
CN107480039B (en) Small file read-write performance test method and device for distributed storage system
US20070240113A1 (en) Model independent input reduction
WO2019075994A1 (en) Method, device and system for mock data at ios end, and storage medium
JP2019512126A (en) Method and system for training a machine learning system
CN107080945B (en) Method and device for testing artificial intelligence behaviors in game and electronic equipment
CN112506766B (en) Automatic generation method of interactive test case
CN113094255A (en) Simulation test method, device and system for data interface
CN114117977B (en) Method suitable for automatically verifying processor system scene
CN113885935A (en) Resource packaging method and device, electronic equipment and computer readable storage medium
CN116776787B (en) Automatic recognition method of signal alias, electronic equipment and medium
CN110597725B (en) Mysql simulation return method, device and equipment
CN114692383A (en) Modeling method and device for full-range analog machine simulation object and computer equipment
CN112650689A (en) Test method, test device, electronic equipment and storage medium
CN110378037B (en) CFD simulation data storage method and device based on Ceph and server
CN110489349B (en) JSON configuration file-based interface test method
CN114995790A (en) Component development method and device, computer readable medium and electronic equipment
CN112817570A (en) Method and system for simulating data through MOCK
CN107229564B (en) Pressure simulation method and device
US7580962B1 (en) Automatic code generation for co-simulation interfaces
CN108563426B (en) iOS request simulation method
CN110704742A (en) Feature extraction method and device
CN116048978B (en) Software service performance self-adaptive test method, system, terminal and medium
US9672040B2 (en) Apparatus and method for determining a cumulative size of trace messages generated by a plurality of instructions

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant