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

Mysql simulation return method, device and equipment Download PDF

Info

Publication number
CN110597725A
CN110597725A CN201910887091.8A CN201910887091A CN110597725A CN 110597725 A CN110597725 A CN 110597725A CN 201910887091 A CN201910887091 A CN 201910887091A CN 110597725 A CN110597725 A CN 110597725A
Authority
CN
China
Prior art keywords
mysql
database
mode
data
recording
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.)
Granted
Application number
CN201910887091.8A
Other languages
Chinese (zh)
Other versions
CN110597725B (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 Novo Network Technology Co Ltd
Original Assignee
Zhejiang Novo 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 Novo Network Technology Co Ltd filed Critical Zhejiang Novo 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

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)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The scheme records the preparation process of the database data when the database is operated for the first time, and determines the database data according to the recording result instead of preparing the database data again when the database is operated subsequently, so that the original database data is always consistent in each database operation. On one hand, the interference of data change on the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the test efficiency of the database is improved. In addition, the application also provides a Mysql simulation return device, equipment and a readable storage medium, and the technical effect of the Mysql simulation return device corresponds to that of the method.

Description

Mysql simulation return method, device and equipment
Technical Field
The application relates to the field of software testing, in particular to a Mysql simulation return method, a Mysql simulation return device, Mysql simulation return equipment and a readable storage medium.
Background
When testing a database, relevant database operations are required, and some database operations may change data in the database, affecting test results of subsequent test processes. The traditional solution is to repeatedly execute initialization operation on database data in the test process, and the solution has the disadvantages of large workload, time and labor waste and low test efficiency.
Disclosure of Invention
The application aims to provide a Mysql simulation return method, a Mysql simulation return device, Mysql simulation return equipment and a readable storage medium, and the Mysql simulation return method, the Mysql simulation return device, the Mysql simulation return equipment and the readable storage medium are used for solving the problem that a traditional database test scheme needs to initialize a database repeatedly, so that the test efficiency is low. The specific scheme is as follows:
in a first aspect, the present application provides a method for returning Mysql simulation, including:
acquiring an sql statement for testing a Mysql database;
respectively judging whether the current mode is a recording mode or a playback mode according to preset configuration information;
if the current mode is the recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value as a data reading result;
if the current mode is a playback mode, generating an object which is the same as the return value of the target interface function, and assigning values 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 obtaining 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 performing, according to the sql statement, a corresponding database operation on the data reading result to obtain a test result of the Mysql database includes:
and 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 items: creation, update, deletion, lookup.
Preferably, after the 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 as a data reading result.
Preferably, the target interface function is executeInternal.
In a second aspect, the present application provides an analog return apparatus for Mysql, comprising:
a statement acquisition module: the method comprises the steps of obtaining an sql statement used for testing a Mysql database;
a mode judgment module: the system comprises a data processing module, a data processing module and a control module, wherein the data processing module is used for respectively judging whether a current mode is a recording mode or a playback mode according to preset configuration information;
a recording module: if the current mode is the recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value as a data reading result;
a playback module: if the current mode is a playback mode, generating an object which is the same as a return value of the target interface function, and assigning values to the object to obtain a data reading result;
an operation module: and the database management module 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 for Mysql, comprising:
a memory: for storing a computer program;
a processor: for executing the computer program to implement a method of simulated return of Mysql 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 simulated return method of Mysql as described above when executed by a processor.
The scheme of the Mysql simulation return method provided by the application comprises the following steps: acquiring an sql statement for testing a Mysql database; respectively judging whether the current mode is a recording mode or a playback mode according to preset configuration information; if the current mode is the recording mode, calling a target interface function to read data of the Mysql database, and obtaining and recording a return value as a data reading result; if the current mode is a playback mode, generating an object which is the same as a return value of the target interface function, and assigning values 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 is operated for the first time, the database data preparation process is recorded, and when the database is operated subsequently, the database data is not prepared again, but the database data is determined according to the recording result, so that the original database data is always consistent in each database operation. On one hand, the interference of data change on the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the test efficiency of the database is improved.
In addition, the application also provides a Mysql simulation return device, equipment and a readable storage medium, and the technical effect of the Mysql simulation return device corresponds to that of the method, and the details are not repeated here.
Drawings
For a clearer explanation of the embodiments or technical solutions of the prior art of the present application, the drawings needed for the description of the embodiments or prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present application, and for those skilled in the art, other drawings can be obtained according to these drawings without creative efforts.
Fig. 1 is a flowchart illustrating a first implementation of a Mysql simulation return method according to an embodiment of the present disclosure;
fig. 2 is a flowchart illustrating an implementation of a second example of a Mysql simulation return method provided in the present application;
FIG. 3 is a functional block diagram of an embodiment of an analog return apparatus for Mysql as provided herein;
fig. 4 is a schematic structural diagram of an embodiment of an analog return device of Mysql according to the present application.
Detailed Description
The core of the application is to provide a Mysql simulation return method, a Mysql simulation return device, Mysql simulation return equipment and a readable storage medium, so that interference of data change on test results and huge workload caused by repeated database initialization are avoided, and finally, the database test efficiency is improved.
In order that those skilled in the art will better understand the disclosure, the following detailed description will be given with reference to the accompanying drawings. It is to be understood that the embodiments described are only a few embodiments of the present application and not all embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present application.
Referring to fig. 1, a description is provided below of a first embodiment of a simulation return method for Mysql, where the first embodiment includes:
s101, acquiring an sql statement for testing a Mysql database;
in this embodiment, the client needs to package the sql statement and send the sql statement to the Mysql database, and analyze the returned content of the Mysql database. The purpose of this embodiment is to simulate the returned result of the interface function according to the returned value of the interface function between the client and the Mysql, so as to ensure that the data acquired from the Mysql database is consistent in each testing process. Specifically, after the sql statement is packaged, and before the sql statement is sent to the Mysql database, the implementation flow of this embodiment is executed.
S102, respectively judging whether the current mode is a recording mode or a playback mode according to preset configuration information;
specifically, the present embodiment sets configuration information in advance, where the configuration may be understood as a flag, and when an sql statement for testing is determined, a subsequent processing flow is determined according to the flag. Different configuration information represents different processing modes, wherein the processing modes at least comprise a recording mode and a playback mode in the embodiment, and the recording mode refers to a result returned after an interface function between the recording client and the Mysql database is operated; and the playback mode simulates and generates a return result of the interface function according to the recording result in the recording mode.
S103, if the current mode is the recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value as a data reading result;
s104, if the current mode is a playback mode, generating an object which is the same as a return value of the target interface function, and assigning values 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 scheme of the analog return method for Mysql provided by the embodiment includes: acquiring an sql statement for testing a Mysql database; respectively judging whether the current mode is a recording mode or a playback mode according to preset configuration information; if the current mode is the recording mode, calling a target interface function to read data of the Mysql database, and obtaining and recording a return value as a data reading result; if the current mode is a playback mode, generating an object which is the same as a return value of the target interface function, and assigning values 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 is operated for the first time, the database data preparation process is recorded, and when the database is operated subsequently, the database data is not prepared again, but the database data is determined according to the recording result, so that the original database data is always consistent in each database operation. On one hand, the interference of data change on the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the test efficiency of the database is improved.
The second embodiment of the Mysql simulation return method provided by the present application is described in detail below, and the second embodiment is implemented based on the first embodiment and is expanded to a certain extent on the basis of the first embodiment.
Specifically, since the interaction function of Connect and Mysql is encapsulated as executeInternal, the embodiment may be modified from front to back, that is, the target interface function in this embodiment is executeInternal.
Referring to fig. 2, the second embodiment specifically includes:
s201, packaging an sql statement for testing a Mysql database; s202, when the sql operation occurs and before the execution of the eInternal function, judging whether the current mode is a recording mode or not according to preset configuration information; if yes, entering S203, otherwise entering S204;
s203, calling the target interface function to read the data of the Mysql database, and obtaining and recording a return value as a data reading result;
s204, judging whether the current mode is a playback mode or not according to preset configuration information; if yes, entering S205, otherwise entering S206;
s205, when the sql operation occurs and before the executeInternal function is run, skipping the running of the executeInternal function, and generating an object which is the same as the return value of the executeInternal function; assigning 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 executeInternal function are modified to be public variables in advance, so that the return value is saved in S203, and the object is assigned in S205.
S206, calling an executeInternal function to read the data of the Mysql database to obtain a return value serving 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 items: creation, update, deletion.
Specifically, when the return value of the function is recorded, the returned structure or class is modified, all the member variable static variables and the like are changed into public variables, and the public variables are directly accessed and stored. When a return value is simulated, an object which is the same as the return value of the executeInternal function is generated, and all member variable static variables and the like in the class are set as common variables to be assigned.
It can be seen that, according to the analog return method for Mysql provided by this embodiment, when a database is first operated, a database data preparation process is recorded, and when a database is subsequently operated, database data is not prepared again, but the database data is determined according to a recording result, so that it is ensured that original database data is always consistent in each database operation. On one hand, the interference of data change on the test result is avoided, on the other hand, the huge workload of repeatedly initializing the database is avoided, and finally the test efficiency of the database is improved.
In the following, a description is given of an analog return device of Mysql according to an embodiment of the present application, and a description is given below of an analog return device of Mysql and an analog return method of Mysql, which are described above, in correspondence with each other.
As shown in fig. 3, the apparatus includes:
the sentence acquisition module 301: the method comprises the steps of obtaining an sql statement used for testing a Mysql database;
the mode determination module 302: the system comprises a data processing module, a data processing module and a control module, wherein the data processing module is used for respectively judging whether a current mode is a recording mode or a playback mode according to preset configuration information;
the recording module 303: if the current mode is the recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value as a data reading result;
the playback module 304: if the current mode is a playback mode, generating an object which is the same as a return value of the target interface function, and assigning values to the object to obtain a data reading result;
the operation module 305: and the database management module 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 Mysql simulation return device of the present embodiment is used to implement the foregoing Mysql simulation return method, and therefore a specific implementation manner of the device may be found in the foregoing embodiment sections of the Mysql simulation return method, for example, the sentence acquisition module 301, the mode determination module 302, the recording module 303, the playback module 304, and the operation module 305 are respectively used to implement steps S101, S102, S103, S104, and S105 of the foregoing Mysql simulation return method. Therefore, specific embodiments thereof may be referred to in the description of the corresponding respective partial embodiments, and will not be described herein.
In addition, since the analog returning device of Mysql according to this embodiment is used to implement the foregoing analog returning method of Mysql, the function thereof corresponds to that of the foregoing method, and details are not repeated here.
In addition, the present application also provides an analog return device of Mysql, as shown in fig. 4, including:
the memory 100: for storing a computer program;
the processor 200: for executing the computer program to carry out the steps of a simulated return method of Mysql as hereinbefore described.
Finally, the present application also provides a readable storage medium having stored thereon a computer program for implementing the steps of a simulated return method of Mysql as described above when executed by a processor.
The Mysql simulation return device and the readable storage medium of the embodiment are used to implement the foregoing Mysql simulation return method, and therefore specific embodiments of the device and the readable storage medium may be found in the foregoing section of the Mysql simulation return method, and are not described here. In addition, since the analog return device and the readable storage medium of Mysql according to this embodiment are used to implement the foregoing analog return method of Mysql, the role thereof corresponds to that of the foregoing method, and details are not described here.
The embodiments are described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same or similar parts among the embodiments are referred to each other. The device disclosed by the embodiment corresponds to the method disclosed by the embodiment, so that the description is simple, and the relevant points can be referred to the method part for description.
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. A software module may reside 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 above detailed descriptions of the solutions provided in the present application, and the specific examples applied herein are set forth to explain the principles and implementations of the present application, and the above descriptions of the examples are only used to help understand the method and its core ideas of the present application; meanwhile, for a person skilled in the art, according to the idea of the present application, there may be variations in the specific embodiments and the application scope, and in summary, the content of the present specification should not be construed as a limitation to the present application.

Claims (8)

1. An analog return method of Mysql, comprising:
acquiring an sql statement for testing a Mysql database;
respectively judging whether the current mode is a recording mode or a playback mode according to preset configuration information;
if the current mode is the recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value as a data reading result;
if the current mode is a playback mode, generating an object which is the same as the return value of the target interface function, and assigning values 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, wherein prior to the obtaining the sql statement for testing the Mysql database, comprising:
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:
and 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 items: creation, update, deletion, lookup.
4. The method according to any one of claims 1 to 3, wherein after said determining whether the current mode is the recording mode or the playback mode according to the preset configuration information, respectively, further comprising:
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 as a data reading result.
5. The method of claim 4, wherein the target interface function is executeInternal.
6. An analog return apparatus for Mysql, comprising:
a statement acquisition module: the method comprises the steps of obtaining an sql statement used for testing a Mysql database;
a mode judgment module: the system comprises a data processing module, a data processing module and a control module, wherein the data processing module is used for respectively judging whether a current mode is a recording mode or a playback mode according to preset configuration information;
a recording module: if the current mode is the recording mode, calling a target interface function to read the data of the Mysql database, and obtaining and recording a return value as a data reading result;
a playback module: if the current mode is a playback mode, generating an object which is the same as a return value of the target interface function, and assigning values to the object to obtain a data reading result;
an operation module: and the database management module 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 simulation return method as claimed in any of claims 1-5.
8. A readable storage medium, having stored thereon a computer program for implementing the steps of a Mysql simulation return method as claimed in any of claims 1-5 when 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 true CN110597725A (en) 2019-12-20
CN110597725B 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 (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1287427A (en) * 1999-11-05 2001-03-14 深圳市中兴通讯股份有限公司 Analogue web element testing method based on message recording and playback
CN1409245A (en) * 2001-09-25 2003-04-09 维音数码(上海)有限公司 Check-up and replay device
US20040088602A1 (en) * 2002-11-05 2004-05-06 Cohen Richard M. Automated recording and replaying of software regression tests
CN1503168A (en) * 2002-11-22 2004-06-09 深圳市中兴通讯股份有限公司 Automatic test method for system products
US20080097996A1 (en) * 2006-10-20 2008-04-24 Oracle International Corporation Transactionally consistent database workload replay
CN102236705A (en) * 2010-05-06 2011-11-09 甲骨文国际公司 Fine grain synchronization for database replay
CN103440200A (en) * 2013-09-05 2013-12-11 北京航空航天大学 High-instantaneity and large-data-volume test playback method based on double operating systems
CN105512017A (en) * 2014-09-22 2016-04-20 阿里巴巴集团控股有限公司 Database compatibility detection method and device
CN107102934A (en) * 2016-02-22 2017-08-29 阿里巴巴集团控股有限公司 The method and apparatus that a kind of relevant database binary log is reset
CN107122289A (en) * 2016-02-25 2017-09-01 阿里巴巴集团控股有限公司 The method of system regression test, apparatus and system
US20180246945A1 (en) * 2017-02-27 2018-08-30 Sap Se Workload Capture and Replay for Replicated Database Systems
CN108829802A (en) * 2018-06-06 2018-11-16 中国人民银行清算总中心 It is associated with log back method and device
CN109189665A (en) * 2018-08-01 2019-01-11 阿里巴巴集团控股有限公司 Data recording, data readback and the method and device tested automatically
CN109634867A (en) * 2018-12-18 2019-04-16 宁夏隆基宁光仪表股份有限公司 Based on method for testing software, device and the storage medium under data analog system
CN109710699A (en) * 2019-01-02 2019-05-03 神州数码融信软件有限公司 The back method of the method for recording of transaction data, transaction data
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

Patent Citations (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1287427A (en) * 1999-11-05 2001-03-14 深圳市中兴通讯股份有限公司 Analogue web element testing method based on message recording and playback
CN1409245A (en) * 2001-09-25 2003-04-09 维音数码(上海)有限公司 Check-up and replay device
US20040088602A1 (en) * 2002-11-05 2004-05-06 Cohen Richard M. Automated recording and replaying of software regression tests
CN1503168A (en) * 2002-11-22 2004-06-09 深圳市中兴通讯股份有限公司 Automatic test method for system products
US20080097996A1 (en) * 2006-10-20 2008-04-24 Oracle International Corporation Transactionally consistent database workload replay
CN102236705A (en) * 2010-05-06 2011-11-09 甲骨文国际公司 Fine grain synchronization for database replay
CN103440200A (en) * 2013-09-05 2013-12-11 北京航空航天大学 High-instantaneity and large-data-volume test playback method based on double operating systems
CN105512017A (en) * 2014-09-22 2016-04-20 阿里巴巴集团控股有限公司 Database compatibility detection method and device
CN107102934A (en) * 2016-02-22 2017-08-29 阿里巴巴集团控股有限公司 The method and apparatus that a kind of relevant database binary log is reset
CN107122289A (en) * 2016-02-25 2017-09-01 阿里巴巴集团控股有限公司 The method of system regression test, apparatus and system
US20180246945A1 (en) * 2017-02-27 2018-08-30 Sap Se Workload Capture and Replay for Replicated Database Systems
CN108829802A (en) * 2018-06-06 2018-11-16 中国人民银行清算总中心 It is associated with log back method and device
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
CN109634867A (en) * 2018-12-18 2019-04-16 宁夏隆基宁光仪表股份有限公司 Based on method for testing software, device and the storage medium under data analog system
CN109710699A (en) * 2019-01-02 2019-05-03 神州数码融信软件有限公司 The back method of the method for recording of transaction data, transaction data
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
GIMIZHANG: "Benchmark Factory 使用 简介之Capture and Replay Oracle Workload", 《HTTPS://BLOG.CSDN.NET/GIMIZHANG/ARTICLE/DETAILS/78164183》 *

Also Published As

Publication number Publication date
CN110597725B (en) 2023-05-05

Similar Documents

Publication Publication Date Title
CN107480039B (en) Small file read-write performance test method and device for distributed storage system
CN107807839B (en) Method and device for modifying memory data of virtual machine and electronic equipment
CN107659455B (en) Method, storage medium, device and system for Mock data of iOS (internet operating system) end
CN112541310B (en) Logic comprehensive control method and device
CN109388622B (en) Log information processing method, device and equipment and readable storage medium
CN107800730B (en) Capacity expansion method and device for virtual disk
CN107273745B (en) Dynamic analysis method for malicious code in dynamic link library form
CN110955434A (en) Software development kit processing method and device, computer equipment and storage medium
CN110795162A (en) Method and device for generating container mirror image file
WO2015120797A1 (en) Method and apparatus for testing compatibility of 3d engine
CN112650689A (en) Test method, test device, electronic equipment and storage medium
CN110597725A (en) Mysql simulation return method, device and equipment
CN111708704A (en) Cloud real machine testing method and device, terminal and storage medium
CN110378037B (en) CFD simulation data storage method and device based on Ceph and server
CN109582295B (en) Data processing method and device, storage medium and processor
CN107229564B (en) Pressure simulation method and device
US7743244B2 (en) Computer system model generation with tracking of actual computer system configuration
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
CN111459849B (en) Memory setting method and device, electronic equipment and storage medium
CN111625192B (en) Metadata object access method, device, equipment and medium
CN117056028B (en) Robot simulation platform building method and device, computer equipment and storage medium
US10977861B1 (en) Inferring quality in point cloud-based three-dimensional objects using topographical data analysis
CN114328049A (en) Block storage performance testing method and device, electronic equipment and storage medium
CN115470670A (en) Method, processor, device and storage medium for determining boom parameters

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