WO2020233369A1 - 基于模拟端口改进软件集成系统的方法及相关设备 - Google Patents
基于模拟端口改进软件集成系统的方法及相关设备 Download PDFInfo
- Publication number
- WO2020233369A1 WO2020233369A1 PCT/CN2020/087610 CN2020087610W WO2020233369A1 WO 2020233369 A1 WO2020233369 A1 WO 2020233369A1 CN 2020087610 W CN2020087610 W CN 2020087610W WO 2020233369 A1 WO2020233369 A1 WO 2020233369A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- port
- server
- analog
- document
- simulation
- Prior art date
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/36—Preventing errors by testing or debugging software
- G06F11/362—Software debugging
Definitions
- This application relates to computer technology, and in particular to a method and related equipment for improving a software integration system based on an analog port.
- a method and related equipment for improving a software integration system based on an analog port are provided.
- a method for improving a software integration system based on an analog port the method is applied to an improved software integration system based on an analog port, the method is executed by an analog server in the system, and the system further includes a server and a client, wherein: Methods include:
- a device for improving software integration system based on analog port including the following modules:
- a transceiver module configured to receive a port document sent by a server, the port document including a port address and business logic;
- a processing module configured to parse the port document according to the parsing script to obtain application program port parameters; obtain a preset analog port, and configure the application port parameters on the analog port;
- the processing module calculates the analog data according to the business logic in the port file to obtain the simulation result port; when the transceiver module Upon receiving the port switching instruction sent by the server, the processing module switches the configured analog port to a real port, and sends the simulation result to the server through the real port.
- a computer device comprising: at least one processor, a memory, and a transceiver; wherein the memory is used to store computer-readable instructions, and when the computer-readable instructions are executed by the processor, the One or more processors execute the following method steps:
- the method is applied to an improved software integration system based on an analog port.
- the method is executed by a simulation server in the system.
- the system also includes a server and a client.
- the method includes:
- One or more storage media storing computer-readable instructions, when the computer-readable instructions are executed by one or more processors, the one or more processors execute the following method steps:
- the method is applied to an improved software integration system based on an analog port.
- the method is executed by a simulation server in the system.
- the system also includes a server and a client.
- the method includes:
- FIG. 1 is an overall flowchart of a method for improving a software integration system based on an analog port in one or more embodiments of the present application;
- Figure 2 is a schematic diagram of a port parameter generation process in a method for improving a software integration system based on an analog port in one or more embodiments of the present application;
- FIG. 3 is a schematic diagram of a simulation result generation process in a method for improving a software integration system based on an analog port in one or more embodiments of the present application;
- Fig. 4 is a structural diagram of a device for improving a software integration system based on an analog port in one or more embodiments of the application.
- Fig. 1 is an overall flowchart of a method for improving a software integration system based on an analog port in one of the embodiments of the present application. As shown in Fig. 1, a method for improving a software integration system based on an analog port includes the following steps:
- the server sends the port document to the simulation server.
- the simulation server will formulate several application API ports for the client to call based on the port document provided by the server.
- the client sends mock mock data to the mock server for testing through the API port, the mock server receives the mock data for testing, and sends the returned result to the client.
- the server sends the port document to the simulation server.
- the port document includes the request address, port address, input parameters, and request method.
- the port document is a port document preset in advance. The client and the server agree on the preset request address and port address , Input parameters, request methods, business processing logic, etc.
- the simulation server is also a preset simulation data test platform, which generates corresponding API ports according to different port documents, and provides mock data test services corresponding to the API ports.
- the port documents provided by the server are standardized port documents, which mainly include files or data formats in excel, json, yaml and other formats. By using standardized file or data formats, it is more convenient to analyze the content of the document and is more conducive to the use of the program. .
- the client is the calculator APP.
- the client has a preset input display page, which is responsible for receiving the content input by the user and displaying the final calculation result.
- the function is provided by the server.
- the client and the server agree on the request address for the addition service, that is, the client's connection address, agree on the input parameters, namely a and b, agree on the port address, that is, the address that connects to the server for calculation, and the agreed request method is "
- the result of a+b" is as follows:
- the simulation server is preset in the system according to the port document.
- the content that needs to be preset includes the virtual data simulation port address, corresponding to the request address, input parameters, that is, the input parameters of the port document, and the output results, that is, according to the input of the port document The result of the request.
- the server When the server has not developed a real test port, it generates one or several pre-appointed API ports for the client to use, and the client directly interacts with the simulated server for mock data; when the server develops a real test port, the client The end switch request address directly interacts with the server for data.
- the parsing script is stored in the script library.
- the parsing script can be analyzed in different languages according to the programming language used by the port document.
- ScriptEngine can be used to parse the script.
- ScriptEngineManager is a collection of factories. , You can get the factory of a certain script by name or tag and generate a ScriptEngine of this script.
- Currently, there are only javascript factories. After getting the ScriptEngine through the factory function, you can use this object to parse the script string, just call Object obj ScriptEngine.eval(String script), and the returned obj is the value of the expression, such as true, false or int .
- CompiledScript can store the result of ScriptEngine parsing a script, which is convenient for multiple calls. As long as the ScriptEngine is forcibly converted using the Compilable interface, calling compile(String script) will return a CompiledScript object, and call CompiledScript.eval() every time you want to use it. It is generally suitable for the use of js functions. The js function can be used to calculate the application port parameters.
- the simulation port is a port in the simulation server.
- the simulation port is used to receive and send data generated during the simulation test.
- the simulation port can be one or more, and it can be used for different applications.
- An analog port such as Android applications, uses a virtual port. This virtual port can receive and send the simulation data generated by the Android APP for simulation testing, while for the windows system, another simulation port is used to simulate data. Receive and send. It can also be adopted that different application programs use different analog ports, for example, game programs use game analog ports, and video programs use video analog ports.
- the parameters of the application program are mainly the CPU, GPU, memory and other parameters required by the application program, as well as the time required for the simulation test, and the result required for the completion of the test.
- business logic is generally stored in the business logic layer, and the business logic corresponding to the ID identification can be queried from the business logic layer in the system architecture according to the ID identification of the port document.
- the business logic is mainly concentrated in the formulation of business rules, The realization of business processes and other system design related to business requirements, that is, it is related to the domain logic that the system responds to. In many cases, the business logic layer is also called the domain layer.
- the business logic can be a Boolean NAND relationship or an overlay relationship. For example, there are two sets of data A and B in the simulation data. According to the business logic, A and B cannot exist at the same time, then the business logic of A and B Is "or".
- S5. Receive a port switching instruction sent by the server, switch the analog port configured for the port to a real port, and send the simulation result to the server through the real port.
- the client will switch the API interface of the client that has completed the test to the real test interface, and complete the final client release. Because there is no simulated server, the client has to wait for the server to pass the test before it can carry out its own testing and joint debugging.
- the simulation server can obtain the test status of the server and the client during software development at any time, and process the simulation data released by the client to obtain the simulation result. After the server has completed a stage of software development and testing, Send the simulation results directly to the server, thereby saving the server time for software development.
- the method before the receiving the port document sent by the server, the method includes:
- the system to be developed may be an Android system, a Windows system, aizix system, etc., and there are differences in programming languages used for different systems.
- the IP address of the server can be a static IP address or a dynamic IP address. For a static IP address, it can be directly compared with the IP address information in the IP address information table in the configuration file. If the server’s IP address is a dynamic IP address, historical data on the use of the server’s IP address must be obtained, the historical data used to extract the IP address and time period of use of the server, and then the update time node according to the IP address information table To determine the system information to be developed corresponding to the server IP address.
- the instruction information can prompt the server to produce port documents that match the system to be developed.
- the server is prompted to generate the port of the Android emulator. Further, it needs to be on the Android system.
- a prompt server is set up to generate an application port for application development.
- the system information to be developed of the server is determined by the IP address, thereby quickly determining the interface document required by the simulation server, thereby improving the efficiency of the simulation test performed by the simulation server.
- FIG. 2 is a schematic diagram of the port parameter generation process in a method for improving a software integration system based on an analog port in one of the embodiments of the present application.
- the S2 parses the port document according to the parsing script To get the application port parameters, including:
- the port address is an ID identification similar to an IP address, different ID identifications are used to identify the parsing script, and different port addresses can reflect port information.
- the parsing script can only obtain application port parameters when it can work on the port.
- the port document when using the parsing script to parse the port document, the port document can be divided into several segments. The length of each segment can be equal or unequal, and then according to the key in the keyword list. Word performs a keyword search for each segment, and then summarizes the keywords in each segment to obtain the keyword of the port document.
- keywords mainly refer to port configuration words, such as: transmission data volume, test time, etc.
- the Word2vec word vector conversion method can be used to vectorize the keywords.
- the code of the application port parameters is obtained by calculating the feature value of the word vector, and then the code is converted to the text. Describe the application port parameters. Because the languages used in different systems and parsing scripts are different, and the application may only be developed for a certain system during development, and the application of word vector conversion can make the application suitable for the current system.
- the parsing script is applied to effectively analyze the port document, so that the simulation server is suitable for testing in different development languages.
- obtaining a preset analog port, and configuring the application port parameters on the analog port includes:
- the configured analog port After splicing the analog port path and the port sub-path, the configured analog port is obtained.
- splicing the analog port path and the port sub-path can place the analog port path before the port sub-path or after the port sub-path, for example: a restaurant that is open on a food delivery platform,
- the restaurant address is the external access address provided by the simulated server.
- the analog port can be effectively configured through path splicing, thereby facilitating the simulation test.
- Figure 3 is a schematic diagram of the simulation result generation process in a method for improving a software integration system based on an analog port in one of the embodiments of the application.
- the S4 and the receiving client transmit through the application port Calculate the simulation data according to the business logic in the port file to obtain the simulation results, including:
- the characteristic data in the simulation data refers to the data generated during the simulation, such as whether the software can be loaded normally under high concurrency, and where there are loopholes in the software, which are easy to be used by Trojan horses or viruses.
- the business logic is mainly Boolean NAND relational logic.
- the same business logic can be clustered, for example, adding all data corresponding to the business logic "AND”, and then performing other business logic operations.
- the preset threshold is set manually, that is, the system developer sets it according to the needs of the client and updates it regularly.
- business logic is used to analyze the simulation data, so that the simulation results required for software development can be accurately obtained, so that the server and the client can use them in time.
- the Methods before the S5 receives the switch port instruction sent by the server, switches the application port to the real port, and sends the simulation result to the server through the real port, the Methods also include:
- Extract node information of a working node in the system information to be developed the node information of the working node includes time node information, and the working node includes software coding nodes, software testing nodes, and software operation and maintenance that are executed sequentially in increasing order of time domain Node, using the end time node of each working node as the time node for port switching;
- the port switching awakening instruction is sent to the server, and the port switching awakening command is used to awaken the server to send the port document.
- the S5 receives a port switch instruction sent by the server, switches the application port to a real port, and sends the simulation result to the server through the real port for system development.
- the method further includes:
- the simulation result is displayed and tested on the client, so that the simulation result of the simulation server can be effectively fed back, so as to improve the simulation test process according to the real test scenario, and make it more consistent with the real test scenario.
- the analog server includes the following modules:
- a transceiver module configured to receive a port document sent by a server, the port document including a port address and business logic;
- a processing module configured to parse the port document according to the parsing script to obtain application program port parameters; obtain a preset analog port, and configure the application port parameters on the analog port;
- the processing module calculates the analog data according to the business logic in the port file to obtain the simulation result port; when the transceiver module Upon receiving the port switching instruction sent by the server, the processing module switches the configured analog port to a real port, and sends the simulation result to the server through the real port.
- the processing module can be used to control the transceiver operation of the transceiver module.
- the device for improving the software integration system based on the analog port has the function of implementing the method corresponding to the method for improving the software integration system based on the analog port provided in the embodiment corresponding to FIG. 1 to FIG. 3 above.
- the function can be realized by hardware, or by hardware executing corresponding software.
- the hardware or software includes one or more modules corresponding to the above functions, and the modules may be software and/or hardware.
- the various modules in the above device for improving the software integration system based on the analog port can be implemented in whole or in part by software, hardware, and combinations thereof.
- the foregoing modules may be embedded in the form of hardware or independent of the processor in the computer device, or may be stored in the memory of the computer device in the form of software, so that the processor can call and execute the operations corresponding to the foregoing modules.
- the processor can be a central processing unit (CPU), a microprocessor, a single-chip microcomputer, etc.
- the above-mentioned device for improving a software integration system based on an analog port can be implemented in a form of computer readable instructions.
- a computer device is provided, and the computer device may be a server or a terminal.
- the computer device When the computer device is a terminal, its internal structure diagram can be as shown in Figure 6.
- the computer equipment includes a processor, a memory, and a network interface connected through a system bus.
- the processor of the computer device is used to provide calculation and control capabilities.
- the memory of the computer device includes a non-volatile storage medium and an internal memory.
- the non-volatile storage medium stores an operating system and computer readable instructions.
- the internal memory provides an environment for the operation of the operating system and computer-readable instructions in the non-volatile storage medium.
- the network interface of the computer device is used to communicate with an external terminal through a network connection.
- the computer-readable instructions are executed by the processor to realize a method for improving the software integration system based on the analog port.
- FIG. 6 is only a block diagram of part of the structure related to the solution of the present application, and does not constitute a limitation on the computer device to which the solution of the present application is applied.
- the specific computer device may Including more or fewer parts than shown in the figure, or combining some parts, or having a different arrangement of parts.
- a computer device includes a memory and one or more processors.
- the memory stores computer readable instructions.
- the one or more processors execute the above The steps of the method for improving the software integration system based on the analog port in each embodiment.
- one or more non-volatile computer-readable storage media storing computer-readable instructions, when the computer-readable instructions are executed by one or more processors, cause the one or more processors to execute The steps of the method for improving the software integration system based on the analog port in the foregoing embodiments.
- the storage medium may be a non-volatile storage medium.
- the program can be stored in a computer-readable storage medium, and the storage medium can include: Read only memory (ROM, Read Only Memory), random access memory (RAM, Random Access Memory), magnetic disk or optical disk, etc.
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
一种基于模拟端口改进软件集成系统的方法及相关设备,涉及大数据技术领域。所述方法包括:接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑(S1);根据解析脚本对所述端口文档进行解析,得到应用程序端口参数(S2);获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口(S3);接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果(S4);接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器(S5)。所述方法及时发送至客户端进行相应的测试,避免了等待时间的浪费。
Description
本申请要求于2019年5月21日提交中国专利局,申请号为201910424968.X、发明名称为“基于模拟端口改进软件集成系统的方法及相关设备”的中国专利申请的优先权,其全部内容通过引用结合在本申请中。
本申请涉及计算机技术,尤其涉及一种基于模拟端口改进软件集成系统方法及相关设备。
软件集成系统开发过程中,服务提供方和服务使用方一般的流程都是在软件需求确认之后,服务提供方根据需要制定若干服务端口供服务使用方进行调用。然而,发明人意识到,在服务提供方端口开发完成前,服务使用方都是处于等待状态,会造成大量的时间浪费,影响项目周期。
发明内容
根据本申请公开的各种实施例,提供一种基于模拟端口改进软件集成系统方法及相关设备。
一种基于模拟端口改进软件集成系统的方法,所述方法应用于基于模拟端口改进软件集成系统,所述方法由所述系统中的模拟服务器执行,所述系统还包括服务器、客户端,其中,方法包括:
接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;
根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;
获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;
接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果;
接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器。
一种基于模拟端口改进软件集成系统的装置,包括以下模块:
收发模块,设置为接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;
处理模块,设置为根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;
所述收发模块接收客户端通过配置好的模拟端口传输的模拟数据后,所述处理模块根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟 结果端口;当所述收发模块接收到所述服务器端发送的切换端口指令时,所述处理模块切换所述配置好的模拟端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器。
一种计算机设备,所述设备包括:至少一个处理器、存储器和收发器;其中,所述存储器用于存储计算机可读指令,所述计算机可读指令被所述处理器执行时,使得所述一个或多个处理器执行以下方法步骤:
所述方法应用于基于模拟端口改进软件集成系统,所述方法由所述系统中的模拟服务器执行,所述系统还包括服务器、客户端,其中,方法包括:
接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;
根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;
获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;
接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果;
接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器。
一种或多个存储有计算机可读指令的存储介质,所述计算机可读指令被一个或多个处理器执行时,使得一个或多个处理器执行如下方法步骤:
所述方法应用于基于模拟端口改进软件集成系统,所述方法由所述系统中的模拟服务器执行,所述系统还包括服务器、客户端,其中,方法包括:
接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;
根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;
获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;
接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果;
接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器。
本申请的一个或多个实施例的细节在下面的附图和描述中提出。本申请的其它特征和优点将从说明书、附图以及权利要求书变得明显。
为了更清楚地说明本申请实施例中的技术方案,下面将对实施例中所需要使用的附图作简单地介绍,显而易见地,下面描述中的附图仅仅是本申请的一些实施例,对于本领域普通技术人员来讲,在不付出创造性劳动的前提下,还可以根据这些附图获得其它的附图。
图1为本申请在一个或多个实施例中的一种基于模拟端口改进软件集成系统的方法的整体流程图;
图2为本申请在一个或多个实施例中的一种基于模拟端口改进软件集成系 统的方法中的端口参数生成过程示意图;
图3为本申请在一个或多个实施例中的一种基于模拟端口改进软件集成系统的方法中的模拟结果生成过程示意图;
图4为本申请在一个或多个实施例中的一种基于模拟端口改进软件集成系统的装置的结构图。
为了使本申请的目的、技术方案及优点更加清楚明白,以下结合附图及实施例,对本申请进行进一步详细说明。应当理解,此处所描述的具体实施例仅仅用以解释本申请,并不用于限定本申请。
本技术领域技术人员可以理解,除非特意声明,这里使用的单数形式“一”、“一个”、“所述”和“该”也可包括复数形式。应该进一步理解的是,本申请的说明书中使用的措辞“包括”是指存在所述特征、整数、步骤、操作、元件和/或组件,但是并不排除存在或添加一个或多个其他特征、整数、步骤、操作、元件、组件和/或它们的组。
图1为本申请在其中一个实施例中的一种基于模拟端口改进软件集成系统的方法的整体流程图,如图1所示,一种基于模拟端口改进软件集成系统的方法,包括以下步骤:
S1、接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;
具体的,软件开发测试过程中,存在服务器、客户端和模拟服务器,服务器将端口文档发送至模拟服务器,模拟服务器会根据服务器提的端口文档,制定若干应用程序API端口提供给客户端进行调用,客户端通过API端口发送模拟Mock数据至模拟服务器进行测试,模拟服务器接收Mock数据进行测试,并将返回结果发送至客户端。
服务器将端口文档发送至模拟服务器,所述端口文档包括请求地址、端口地址、输入参数、请求方式,端口文档为提前预设的端口文档,由客户端和服务器约定预设的请求地址、端口地址、输入参数、请求方式、业务处理逻辑等,模拟服务器也是预设的模拟数据测试平台,依据不同的端口文档生成对应的API端口,提供对应API端口的Mock数据测试服务。
服务器提供的端口文档为标准化的端口文档,主要包括excel,json,yaml等格式的文件或数据格式,通过使用标准化后的文件或数据格式,更便于进行文档内容解析,也更有利于程序的使用。
例如:通过计算器完成一个“a+b=?”的二元加法运算,客户端为计算器APP,客户端预设有输入展示页面,负责接收用户输入的内容和展示最终的计算结果,计算功能由服务器提供,客户端和服务器约定好提供加法服务的请求地址,即客户端的连接地址,约定输入参数,即a和b,约定端口地址,即连接服务器进行计算的地址,约定请求方式为“a+b”的结果,具体如下:
请求地址:http://server/add?a=&b=
端口地址:http://server/add
输入参数:a,b
输出结果:result(a+b的结果)。
模拟服务器,是按照端口文档预设在系统内的,需要预设的内容包括虚拟数据模拟端口地址,与请求地址对应,输入参数,即端口文档的输入参数,输出结果,即依据端口文档的输入请求获取的结果。当服务器未开发完成真实的测试端口时,生成一个或若干个事先约定好的API端口供客户端使用,客户端直接与模拟服务器进行Mock数据的交互;当服务器开发出真实的测试端口时,客户端切换请求地址直接与服务器进行数据交互。
S2、根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;
具体的,解析脚本存储在脚本库中,解析脚本可以根据端口文档所使用的编程语言不同而采用不同语言下的解析脚本,如在JAVA语言下,可以采用ScriptEngine解析脚本,ScriptEngineManager是一个工厂的集合,可以通过name或tag的方式获取某个脚本的工厂并生成一个此脚本的ScriptEngine,目前只有javascript的工厂。通过工厂函数得到了ScriptEngine之后,就可以用这个对象来解析脚本字符串了,直接调用Object obj=ScriptEngine.eval(String script)即可,返回的obj为表达式的值,比如true、false或int。CompiledScript可以将ScriptEngine解析一段脚本的结果存起来,方便多次调用。只要将ScriptEngine用Compilable接口强制转换后,调用compile(String script)就返回了一个CompiledScript对象,要用的时候每次调用一下CompiledScript.eval()即可,一般适合用于js函数的使用。利用js函数就可以计算出所述应用程序端口参数。
S3、获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;
具体的,模拟端口是模拟服务器中的端口,模拟端口用于接收和发送模拟测试过程中产生的数据,在本实施例中模拟端口可以是一个也可以是多个,对于不同的应用程序可以采用一个模拟端口,比如Android类的应用程序均采用一个虚拟端口,此虚拟端口可以接收和发送Android类的APP进行模拟测试时产生的模拟数据,而对于windows系统则采用另一个模拟端口进行模拟数据的接收和发送。也可以采用,不同的应用程序采用不同的模拟端口,比如,游戏程序采用游戏模拟端口,视频程序采用视频模拟端口。
应用程序的参数主要是应用程序需要的CPU、GPU、内存等参数,以及需要进行模拟测试的时间,测试完成需要的结果等。
S4、接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果;
具体的,业务逻辑一般存储在业务逻辑层中,可以根据端口文档的ID标识,从系统架构中的业务逻辑层中查询出该ID标识对应的业务逻辑,业务逻辑主要 集中在业务规则的制定、业务流程的实现等与业务需求有关的系统设计,也即是说它是与系统所应对的领域逻辑有关,很多时候,也将业务逻辑层称为领域层。
业务逻辑可以是布尔式的与非关系,也可以是叠加关系等,例如,在模拟数据中有A和B两组数据,根据业务逻辑,A和B不能同时存在,则A和B的业务逻辑为“或”。
S5、接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器。
具体的,在传统技术中,服务器完成软件开发的真实测试后,客户端才会将完成测试的客户端连接的API接口切换至真实测试接口,并完成最终客户端的发布。因为没有模拟服务器,客户端就要等待服务器测试通过才能开展自己的测试及联调工作。而在本实施例中,模拟服务器可以随时获取服务器和客户端在进行软件开发时的测试状态,将客户端发布的模拟数据进行处理得到模拟结果,当服务器执行完软件开发测试的一个阶段后,直接将模拟结果发送至服务器,从而节约服务器进行软件开发的时间。
本实施例,通过模拟服务器在服务器进行完系统开发中每一步测试后,及时发送至客户端进行相应的测试,从而使客户端的调试时间提前,避免了等待时间的浪费,通过减少等待时间,缩短了整个系统开发项目的周期,提高开发效率。
在其中一个实施例中,所述接收服务器发送的端口文档之前,所述方法包括:
获取所述服务器的IP地址,根据所述IP地址,从预设的IP地址信息表中提取出所述服务器的待开发系统信息;
具体的,待开发系统可以为Android系统、Windows系统和luix系统等,针对不同的系统所使用的编程语言存在着差异。服务器的IP地址可以是静态IP地址,也可以是动态IP地址,对于静态IP地址可以直接与配置文件中的IP地址信息表中的IP地址信息进行比对。若服务器的IP地址是动态IP地址,则要获得该服务器IP地址使用情况的历史数据,从历史数据中提取该服务器历次使用的IP地址和使用时间段,再根据IP地址信息表的更新时间节点,确定该服务器IP地址对应的待开发系统信息。
根据所述待开发系统信息,生成指示信息,所述指示信息用于指示所述服务器生成所述端口文档。
具体的,在本实施例中指示信息可以提示服务器生产与待开发系统相匹配的端口文档,比如待开发系统是Android系统,则提示服务器生成Android模拟器的端口,进一步的,需要在Android系统上进行应用程序开发,则设立一个提示服务器生成一个应用程序端口用于进行应用程序开发。
本实施例,通过IP地址确定服务器的待开发系统信息,从而快速的确定模拟服务器所需的接口文档,从而提升模拟服务器进行模拟测试的效率。
图2为本申请在其中一个实施例中的一种基于模拟端口改进软件集成系统的方法中的端口参数生成过程示意图,如图所示,所述S2、根据解析脚本对所述端口文档进行解析,得到应用程序端口参数,包括:
S21、获取所述端口文档中的端口地址,根据所述端口地址,从脚本库中提取出包含所述端口地址的解析脚本;
其中,端口地址是类似于IP地址的一种ID标识,不同的ID标识用于对解析脚本进行识别,不同的端口地址可以反应端口的信息。解析脚本只有在能够在端口进行工作时,才能获得应用程序端口参数。在脚本库中有不同的解析脚本,比如,JOSN脚本、php脚本等。
S22、对所述端口文档采用所述解析脚本进行解析,得到所述端口文档的关键词;
具体的,在使用解析脚本对端口文档进行解析时,可以将端口文档划分成数个语段,每一个语段的长度可以是等长度也可以是不等长度,然后根据关键词列表中的关键词对每一个语段进行关键词搜索,然后在汇总各个语段中的关键词后得到所述端口文档的关键词。其中,关键词主要是指端口配置词,比如:传输数据量、测试时间等。
S23、将所述关键词进行词向量转换后,得到所述应用程序端口参数。
其中,在对关键词进行词向量转换时可以采用Word2vec词向量转化法将关键词进行向量化转换,通过计算词向量的特征值得到应用程序端口参数的编码,再将编码进行文字转换后得到所述应用程序端口参数。因为在不同的系统和解析脚本所使用的语言是不同的,而应用程序在开发时可能仅仅是针对某一种系统进行开发,而应用词向量转换的方式可以使应用程序适用于当前系统。
本实施例,应用解析脚本对端口文档进行有效解析,从而使模拟服务器适用于不同开发语言的测试。
在其中一个实施例中,在所述S3、获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口,包括:
获取所述模拟端口路径;
根据所述应用程序端口参数生成端口子路径;
拼接所述模拟端口路径和所述端口子路径后,得到所述配置好的模拟端口。
具体的,拼接所述模拟端口路径和所述端口子路径可以将模拟端口路径置于所述端口子路径之前,也可以置于端口子路径之后,例如:一个外卖平台中一家正在营业的餐厅,其餐厅地址是模拟服务器提供的外部访问地址,解析端口文档后,在菜单里写入多个菜名,即添加子路径,形成菜单供食客点单。
本实施例,通过路径拼接的方式可以有效的配置模拟端口,从而便于进行模拟测试。
图3为本申请在其中一个实施例中的一种基于模拟端口改进软件集成系统的方法中的模拟结果生成过程示意图,如图所示,所述S4、接收客户端通过所述应用程序端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果,包括:
S41、提取所述模拟数据中的特征数据,遍历所述端口文档的业务逻辑,提取出所述特征数据对应的特征业务逻辑;
其中,模拟数据中的特征数据是指在进行模拟时产生的如软件在高并发情况下是否能够正常加载,软件中哪些地方存在着漏洞,容易被木马或者病毒进行利用等。业务逻辑主要是布尔式的与非关系逻辑。
S42、对所述模拟数据采用所述特征业务逻辑进行运算,将所述运算结果与预设阈值进行比较,若所述运算结果不大于预设阈值,则得到所述模拟结果,否则,重新提取所述特征业务逻辑,直到得到所述模拟结果。
其中,进行业务逻辑运算时,可以将相同的业务逻辑进行聚类,比如将“与”这个业务逻辑对应的所有数据进行相加,然后再进行其它业务逻辑的运算。预设阈值是人为设置的,即系统开发人员根据客户端的需求进行设置,定期会进行更新。
本实施例,利用业务逻辑对模拟数据进行分析,从而能够准确的得到软件开发所需的模拟结果,以便于服务器和客户端进行及时使用。
在其中一个实施例中,所述S5、接收所述服务器发送的切换端口指令,切换所述应用程序端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器之前,所述方法还包括:
提取所述待开发系统信息中工作节点的节点信息,所述工作节点的节点信息包括时间节点信息,所述工作节点包括按照时域增序依次执行的软件编码节点、软件测试节点和软件运行维护节点,以每一个所述工作节点的结束时间节点作为端口切换的时间节点;
当当前的工作节点的执行时间结束时,向所述服务器发送所述端口切换唤起指令,所述端口切换唤起指令用于唤起所述服务器发送所述端口文档。
在其中一个实施例中,所述S5、接收所述服务器发送的切换端口指令,切换所述应用程序端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器进行系统开发之后,所述方法还包括:
接收所述服务器根据所述模拟结果进行系统开发的软件信息,将所述软件信息发送至所述客户端,以使所述客户端根据所述软件信息进行展示测试;
接收所述客户端的展示测试结果,提取所述展示测试结果中的断言,根据所述断言对所述应用程序端口进行重新配置。
本实施例通过在客户端对模拟结果进行展示测试,从而使模拟服务器的模拟结果进行有效的反馈,以便于根据真实测试场景对模拟测试过程进行改进,使其更加符合真实测试场景。
在其中一个实施例中,提出了一种基于模拟端口改进软件集成系统的装置,如图4所示,所述模拟服务器包括以下模块:
收发模块,设置为接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;
处理模块,设置为根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;
所述收发模块接收客户端通过配置好的模拟端口传输的模拟数据后,所述处理模块根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果端口;当所述收发模块接收到所述服务器端发送的切换端口指令时,所述处理模块切换所述配置好的模拟端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器。
处理模块可用于控制所述收发模块的收发操作。所述基于模拟端口改进软件集成系统的装置具有实现对应于上述图1-图3所对应的实施例中提供的基于模拟端口改进软件集成系统的方法的功能。所述功能可以通过硬件实现,也可以通过硬件执行相应的软件实现。硬件或软件包括一个或多个与上述功能相对应的模块,所述模块可以是软件和/或硬件。
关于基于模拟端口改进软件集成系统的装置的具体限定可以参见上文中对于基于模拟端口改进软件集成系统的方法的限定,在此不再赘述。上述基于模拟端口改进软件集成系统的装置中的各个模块可全部或部分通过软件、硬件及其组合来实现。上述各模块可以硬件形式内嵌于或独立于计算机设备中的处理器中,也可以以软件形式存储于计算机设备中的存储器中,以便于处理器调用执行以上各个模块对应的操作。该处理器可以为中央处理单元(CPU)、微处理器、单片机等。上述基于模拟端口改进软件集成系统的装置可以实现为一种计算机可读指令的形式。
在其中一个实施例中,提供了一种计算机设备,该计算机设备可以是服务器,也可以是终端。当该计算机设备为终端时,其内部结构图可以如图6所示。该计算机设备包括通过系统总线连接的处理器、存储器和网络接口。该计算机设备的处理器用于提供计算和控制能力。该计算机设备的存储器包括非易失性存储介质、内存储器。该非易失性存储介质存储有操作系统和计算机可读指令。该内存储器为非易失性存储介质中的操作系统和计算机可读指令的运行提供环境。该计算机设备的网络接口用于与外部的终端通过网络连接通信。该计算机可读指令被处理器执行时以实现一种基于模拟端口改进软件集成系统的方法。
本领域技术人员可以理解,图6中示出的结构,仅仅是与本申请方案相关 的部分结构的框图,并不构成对本申请方案所应用于其上的计算机设备的限定,具体的计算机设备可以包括比图中所示更多或更少的部件,或者组合某些部件,或者具有不同的部件布置。
在其中一个实施例中,一种计算机设备,包括存储器和一个或多个处理器,存储器中储存有计算机可读指令,计算机可读指令被处理器执行时,使得一个或多个处理器执行上述各实施例中的所述基于模拟端口改进软件集成系统的方法的步骤。
上述对于计算机设备的限定可以参见上文中对于基于模拟端口改进软件集成系统的方法的具体限定,在此不再赘述。
在其中一个实施例中,一个或多个存储有计算机可读指令的非易失性计算机可读存储介质,计算机可读指令被一个或多个处理器执行时,使得一个或多个处理器执行上述各实施例中的所述基于模拟端口改进软件集成系统的方法的步骤。其中,所述存储介质可以为非易失性存储介质。
本领域普通技术人员可以理解上述实施例的各种方法中的全部或部分步骤是可以通过程序来指令相关的硬件来完成,该程序可以存储于一计算机可读存储介质中,存储介质可以包括:只读存储器(ROM,Read Only Memory)、随机存取存储器(RAM,Random Access Memory)、磁盘或光盘等。
以上所述实施例的各技术特征可以进行任意的组合,为使描述简洁,未对上述实施例中的技术特征所有可能的组合都进行描述,然而,只要这些技术特征的组合不存在矛盾,都应当认为是本说明书记载的范围。
以上所述实施例仅表达了本申请一些示例性实施例,其中描述较为具体和详细,但并不能因此而理解为对本申请专利范围的限制。应当指出的是,对于本领域的普通技术人员来说,在不脱离本申请构思的前提下,还可以做出若干变形和改进,这些都属于本申请的保护范围。因此,本申请专利的保护范围应以所附权利要求为准。
Claims (20)
- 一种基于模拟端口改进软件集成系统的方法,所述方法应用于基于模拟端口改进软件集成的系统,所述方法由所述系统中的模拟服务器执行,所述系统还包括服务器、客户端,其中,所述方法包括:接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果;接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器。
- 根据权利要求1所述的基于模拟端口改进软件集成系统的方法,其中,所述接收服务器发送的端口文档之前,所述方法包括:获取所述服务器的IP地址,根据所述IP地址,从预设的IP地址信息表中提取出所述服务器的待开发系统信息;根据所述待开发系统信息,生成指示信息,所述指示信息用于指示所述服务器生成所述端口文档。
- 根据权利要求1所述的基于模拟端口改进软件集成系统的方法,其中,所述根据解析脚本对所述端口文档进行解析,得到应用程序端口参数,包括:获取所述端口文档中的端口地址,根据所述端口地址,从脚本库中提取出包含所述端口地址的解析脚本;对所述端口文档采用所述解析脚本进行解析,得到所述端口文档的关键词;将所述关键词进行词向量转换后,得到所述应用程序端口参数。
- 根据权利要求1所述的基于模拟端口改进软件集成系统的方法,其中,获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口,包括:获取所述模拟端口路径;根据所述应用程序端口参数生成端口子路径;拼接所述模拟端口路径和所述端口子路径后,得到所述配置好的模拟端口。
- 根据权利要求1所述的基于模拟端口改进软件集成系统的方法,其中,所述接收客户端通过所述应用程序端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果,包括:提取所述模拟数据中的特征数据,遍历所述端口文档的业务逻辑,提取出所述特征数据对应的特征业务逻辑;对所述模拟数据采用所述特征业务逻辑进行运算,将所述运算结果与预设阈值进行比较,若所述运算结果不大于预设阈值,则得到所述模拟结果,否则,重新提取所述特征业务逻辑,直到得到所述模拟结果。
- 根据权利要求2所述的基于模拟端口改进软件集成系统的方法,其中,所述接收所述服务器发送的切换端口指令,切换所述应用程序端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器之前,所述方法还包括:提取所述待开发系统信息中工作节点的节点信息,所述工作节点的节点信息包括时间节点信息,所述工作节点包括按照时域增序依次执行的软件编码节点、软件测试节点和软件运行维护节点,以每一个所述工作节点的结束时间节点作为端口切换的时间节点;当当前的工作节点的执行时间结束时,向所述服务器发送所述端口切换唤起指令,所述端口切换唤起指令用于唤起所述服务器发送所述端口文档。
- 根据权利要求1所述的基于模拟端口改进软件集成系统的方法,其中,所述接收所述服务器发送的切换端口指令,切换所述应用程序端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器之后,所述方法还包括:接收所述服务器根据所述模拟结果进行系统开发的软件信息,将所述软件信息发送至所述客户端,以使所述客户端根据所述软件信息进行展示测试;接收所述客户端的展示测试结果,提取所述展示测试结果中的断言,根据所述断言对所述应用程序端口进行重新配置。
- 一种基于模拟端口改进软件集成系统的装置,所述模拟服务器包括以下模块:收发模块,设置为接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;处理模块,设置为根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;所述收发模块接收客户端通过配置好的模拟端口传输的模拟数据后,所述处理模块根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果端口;当所述收发模块接收到所述服务器端发送的切换端口指令时,所述处理模块切换所述配置好的模拟端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器。
- 一种计算机设备,包括存储器和一个或多个处理器,所述存储器中储存有计算机可读指令,所述计算机可读指令被所述一个或多个处理器执行时,使得所述一个或多个处理器执行以下步骤:所述方法应用于基于模拟端口改进软件集成的系统,所述方法由所述系统中的模拟服务器执行,所述系统还包括服务器、客户端,所述方法包括:接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果;接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器。
- 根据权利要求9所述计算机设备,其中,所述接收服务器发送的端口文档之前,包括:获取所述服务器的IP地址,根据所述IP地址,从预设的IP地址信息表中提取出所述服务器的待开发系统信息;根据所述待开发系统信息,生成指示信息,所述指示信息用于指示所述服务器生成所述端口文档。
- 根据权利要求9所述计算机设备,其中,所述根据解析脚本对所述端口文档进行解析,得到应用程序端口参数,包括:获取所述端口文档中的端口地址,根据所述端口地址,从脚本库中提取出包含所述端口地址的解析脚本;对所述端口文档采用所述解析脚本进行解析,得到所述端口文档的关键词;将所述关键词进行词向量转换后,得到所述应用程序端口参数。
- 根据权利要求9所述计算机设备,其中,所述获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口,包括:获取所述模拟端口路径;根据所述应用程序端口参数生成端口子路径;拼接所述模拟端口路径和所述端口子路径后,得到所述配置好的模拟端口。
- 根据权利要求9所述计算机设备,其中,所述接收客户端通过所述应用程序端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果,包括:提取所述模拟数据中的特征数据,遍历所述端口文档的业务逻辑,提取出所述特征数据对应的特征业务逻辑;对所述模拟数据采用所述特征业务逻辑进行运算,将所述运算结果与预设阈值进行比较,若所述运算结果不大于预设阈值,则得到所述模拟结果,否则,重新提取所述特征业务逻辑,直到得到所述模拟结果。
- 根据权利要求10所述计算机设备,其中,所述接收所述服务器发送的切换端口指令,切换所述应用程序端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器之前,还包括:提取所述待开发系统信息中工作节点的节点信息,所述工作节点的节点信息包括时间节点信息,所述工作节点包括按照时域增序依次执行的软件编码节点、软件测试节点和软件运行维护节点,以每一个所述工作节点的结束时间节点作为端口切换的时间节点;当当前的工作节点的执行时间结束时,向所述服务器发送所述端口切换唤起指令,所述端口切换唤起指令用于唤起所述服务器发送所述端口文档。
- 根据权利要求11所述计算机设备,其中,所述接收所述服务器发送的切换端口指令,切换所述应用程序端口至真实端口,通过所述真实端口将所述模拟结果发送至所述服务器之后,还包括:接收所述服务器根据所述模拟结果进行系统开发的软件信息,将所述软件信息发送至所述客户端,以使所述客户端根据所述软件信息进行展示测试;接收所述客户端的展示测试结果,提取所述展示测试结果中的断言,根据所述断言对所述应用程序端口进行重新配置。
- 一个或多个存储有计算机可读指令的非易失性计算机可读存储介质,所述计算机可读指令被一个或多个处理器执行时,使得所述一个或多个处理器执行以下步骤:所述方法应用于基于模拟端口改进软件集成的系统,所述方法由所述系统中的模拟服务器执行,所述系统还包括服务器、客户端,所述方法包括:接收服务器发送的端口文档,所述端口文档包括端口地址和业务逻辑;根据解析脚本对所述端口文档进行解析,得到应用程序端口参数;获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口;接收客户端通过配置好的模拟端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果;接收所述服务器发送的切换端口指令,切换所述端口配置好的模拟端口至真实端口,通过所述真实端口,将所述模拟结果发送至所述服务器。
- 根据权利要求16所述存储介质,其中,所述接收服务器发送的端口文档之前包括:获取所述服务器的IP地址,根据所述IP地址,从预设的IP地址信息表中提取出所述服务器的待开发系统信息;根据所述待开发系统信息,生成指示信息,所述指示信息用于指示所述服务器生成所述端口文档。
- 根据权利要求16所述存储介质,其中,所述根据解析脚本对所述端口文档进行解析,得到应用程序端口参数,包括:获取所述端口文档中的端口地址,根据所述端口地址,从脚本库中提取出包含所述端口地址的解析脚本;对所述端口文档采用所述解析脚本进行解析,得到所述端口文档的关键词;将所述关键词进行词向量转换后,得到所述应用程序端口参数。
- 根据权利要求16所述存储介质,其中,所述获取预设的模拟端口,配置所述应用程序端口参数于所述模拟端口,包括:获取所述模拟端口路径;根据所述应用程序端口参数生成端口子路径;拼接所述模拟端口路径和所述端口子路径后,得到所述配置好的模拟端口。
- 根据权利要求16所述存储介质,其中,所述接收客户端通过所述应用程序端口传输的模拟数据,根据所述端口文档中的业务逻辑对所述模拟数据进行计算,得到模拟结果,包括:提取所述模拟数据中的特征数据,遍历所述端口文档的业务逻辑,提取出所述特征数据对应的特征业务逻辑;对所述模拟数据采用所述特征业务逻辑进行运算,将所述运算结果与预设阈值进行比较,若所述运算结果不大于预设阈值,则得到所述模拟结果,否则,重新提取所述特征业务逻辑,直到得到所述模拟结果。
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201910424968.X | 2019-05-21 | ||
CN201910424968.XA CN110309048A (zh) | 2019-05-21 | 2019-05-21 | 基于模拟端口改进软件集成系统的方法及相关设备 |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2020233369A1 true WO2020233369A1 (zh) | 2020-11-26 |
Family
ID=68075013
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/CN2020/087610 WO2020233369A1 (zh) | 2019-05-21 | 2020-04-28 | 基于模拟端口改进软件集成系统的方法及相关设备 |
Country Status (2)
Country | Link |
---|---|
CN (1) | CN110309048A (zh) |
WO (1) | WO2020233369A1 (zh) |
Cited By (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113010411A (zh) * | 2020-12-15 | 2021-06-22 | 云智慧(北京)科技有限公司 | 基于mock服务返回数据的方法、系统和模拟测试方法 |
CN114880172A (zh) * | 2022-04-30 | 2022-08-09 | 苏州浪潮智能科技有限公司 | 一种服务器兼容适配方法、装置、电子设备及存储介质 |
CN116112481A (zh) * | 2022-12-15 | 2023-05-12 | 苏州迈艾木软件科技有限公司 | 一种文件实时同步及交互方法 |
CN117234951A (zh) * | 2023-11-13 | 2023-12-15 | 建信金融科技有限责任公司 | 应用系统的功能测试方法、装置、计算机设备、存储介质 |
Families Citing this family (9)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN110309048A (zh) * | 2019-05-21 | 2019-10-08 | 深圳壹账通智能科技有限公司 | 基于模拟端口改进软件集成系统的方法及相关设备 |
CN110765024B (zh) * | 2019-10-29 | 2023-08-29 | 百度在线网络技术(北京)有限公司 | 模拟测试方法、装置、电子设备和计算机可读存储介质 |
CN111953775A (zh) * | 2020-08-12 | 2020-11-17 | 吉林亿联银行股份有限公司 | 一种数据传输方法及装置 |
CN112052179B (zh) * | 2020-09-21 | 2022-03-04 | 华云数据控股集团有限公司 | 软件系统的模拟方法、模拟系统及计算机可读介质 |
CN113535260B (zh) * | 2021-06-29 | 2022-11-04 | 未鲲(上海)科技服务有限公司 | 基于模拟器的数据处理方法、装置、设备及存储介质 |
CN113467780A (zh) * | 2021-06-30 | 2021-10-01 | 北京达佳互联信息技术有限公司 | 一种数据获取方法、装置、电子设备及存储介质 |
US11645253B1 (en) * | 2021-12-01 | 2023-05-09 | International Business Machines Corporation | Managing a new version of an integration flow during a rolling update |
GB2627889A (en) * | 2021-12-01 | 2024-09-04 | Ibm | Managing new version of integration flow during rolling update |
CN116089199B (zh) * | 2023-03-30 | 2023-07-11 | 湖南华自信息技术有限公司 | 一种io端口测试方法及服务器 |
Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20120266157A1 (en) * | 2011-04-18 | 2012-10-18 | Samsung Electronics Co., Ltd. | Broadcast receiving apparatus and method of installing service |
CN109460266A (zh) * | 2018-10-29 | 2019-03-12 | 无锡华云数据技术服务有限公司 | 一种构造软件模拟数据的方法及装置 |
CN109739573A (zh) * | 2018-12-27 | 2019-05-10 | 深圳市多度科技有限公司 | 实现api接口调用的处理方法及装置、实现api接口的系统 |
CN109766262A (zh) * | 2018-12-15 | 2019-05-17 | 深圳壹账通智能科技有限公司 | 接口数据处理方法、自动化测试方法、装置、设备和介质 |
CN110309048A (zh) * | 2019-05-21 | 2019-10-08 | 深圳壹账通智能科技有限公司 | 基于模拟端口改进软件集成系统的方法及相关设备 |
Family Cites Families (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7877732B2 (en) * | 2006-11-29 | 2011-01-25 | International Business Machines Corporation | Efficient stress testing of a service oriented architecture based application |
CN105512032B (zh) * | 2015-12-01 | 2019-01-04 | 福建联迪商用设备有限公司 | 一种中间库虚拟控制测试方法及其系统 |
CN106528400A (zh) * | 2016-09-22 | 2017-03-22 | 深圳峰创智诚科技有限公司 | Mock测试方法和装置 |
CN108804336A (zh) * | 2018-06-15 | 2018-11-13 | 深圳壹账通智能科技有限公司 | 交互系统测试方法、装置、计算机设备和存储介质 |
CN109491910B (zh) * | 2018-11-07 | 2021-06-29 | 紫光测控有限公司 | 一种保护逻辑和控制逻辑的可视化仿真调试方法及系统 |
-
2019
- 2019-05-21 CN CN201910424968.XA patent/CN110309048A/zh active Pending
-
2020
- 2020-04-28 WO PCT/CN2020/087610 patent/WO2020233369A1/zh active Application Filing
Patent Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20120266157A1 (en) * | 2011-04-18 | 2012-10-18 | Samsung Electronics Co., Ltd. | Broadcast receiving apparatus and method of installing service |
CN109460266A (zh) * | 2018-10-29 | 2019-03-12 | 无锡华云数据技术服务有限公司 | 一种构造软件模拟数据的方法及装置 |
CN109766262A (zh) * | 2018-12-15 | 2019-05-17 | 深圳壹账通智能科技有限公司 | 接口数据处理方法、自动化测试方法、装置、设备和介质 |
CN109739573A (zh) * | 2018-12-27 | 2019-05-10 | 深圳市多度科技有限公司 | 实现api接口调用的处理方法及装置、实现api接口的系统 |
CN110309048A (zh) * | 2019-05-21 | 2019-10-08 | 深圳壹账通智能科技有限公司 | 基于模拟端口改进软件集成系统的方法及相关设备 |
Cited By (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113010411A (zh) * | 2020-12-15 | 2021-06-22 | 云智慧(北京)科技有限公司 | 基于mock服务返回数据的方法、系统和模拟测试方法 |
CN114880172A (zh) * | 2022-04-30 | 2022-08-09 | 苏州浪潮智能科技有限公司 | 一种服务器兼容适配方法、装置、电子设备及存储介质 |
CN116112481A (zh) * | 2022-12-15 | 2023-05-12 | 苏州迈艾木软件科技有限公司 | 一种文件实时同步及交互方法 |
CN117234951A (zh) * | 2023-11-13 | 2023-12-15 | 建信金融科技有限责任公司 | 应用系统的功能测试方法、装置、计算机设备、存储介质 |
CN117234951B (zh) * | 2023-11-13 | 2024-01-30 | 建信金融科技有限责任公司 | 应用系统的功能测试方法、装置、计算机设备、存储介质 |
Also Published As
Publication number | Publication date |
---|---|
CN110309048A (zh) | 2019-10-08 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
WO2020233369A1 (zh) | 基于模拟端口改进软件集成系统的方法及相关设备 | |
WO2021184725A1 (zh) | 用户界面测试方法、装置、存储介质及计算机设备 | |
WO2017181591A1 (zh) | 测试方法及系统 | |
CN105872083A (zh) | 一种支持不同类型客户端访问服务器的方法、服务器及系统 | |
CN110955409B (zh) | 在云平台上创建资源的方法和装置 | |
CN108595331B (zh) | 异步接口的测试方法、介质、装置和计算设备 | |
CN104598513A (zh) | 一种基于网页框架的数据流控制方法和系统 | |
JP2022177793A (ja) | ディープラーニングフレームワークのオペレータ登録方法、装置、デバイス及び記憶媒体 | |
CN113778897B (zh) | 接口的自动测试方法、装置、设备及存储介质 | |
US11294740B2 (en) | Event to serverless function workflow instance mapping mechanism | |
CN110727429A (zh) | 一种前端页面的生成方法、装置及设备 | |
US10691581B1 (en) | Distributed software debugging system | |
CN113448985A (zh) | 一种api接口生成方法、调用方法、装置及电子设备 | |
CN116360735A (zh) | 一种表单生成方法、装置、设备和介质 | |
CN109739655A (zh) | 一种gRPC请求的参数设置方法及装置 | |
CN110717992B (zh) | 调度模型的方法、装置、计算机系统和可读存储介质 | |
CN112559335A (zh) | 测试方法、装置、设备和存储介质 | |
CN112416747A (zh) | 一种测试用例执行方法、装置、设备及介质 | |
CN107734050A (zh) | 一种负载机分配方法、计算设备及负载机分配系统 | |
CN112883088A (zh) | 一种数据处理方法、装置、设备及存储介质 | |
CN112052152A (zh) | 一种模拟测试的方法和装置 | |
CN115982257A (zh) | 接口创建方法以及相关设备 | |
CN115202907A (zh) | 一种应用程序接口的运行方法、系统、计算机设备及介质 | |
CN112711602B (zh) | 一种存储过程的运行方法、装置,数据库系统及存储介质 | |
CN113961194A (zh) | 基于Flutter跨应用的工程构建方法、系统、终端及介质 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 20809755 Country of ref document: EP Kind code of ref document: A1 |
|
NENP | Non-entry into the national phase |
Ref country code: DE |
|
32PN | Ep: public notification in the ep bulletin as address of the adressee cannot be established |
Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205 DATED 04/03/2022) |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 20809755 Country of ref document: EP Kind code of ref document: A1 |