CN111506341A - Software configuration information detection method, device and system - Google Patents

Software configuration information detection method, device and system Download PDF

Info

Publication number
CN111506341A
CN111506341A CN202010318556.0A CN202010318556A CN111506341A CN 111506341 A CN111506341 A CN 111506341A CN 202010318556 A CN202010318556 A CN 202010318556A CN 111506341 A CN111506341 A CN 111506341A
Authority
CN
China
Prior art keywords
software
configuration information
production
online
configuration file
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
CN202010318556.0A
Other languages
Chinese (zh)
Other versions
CN111506341B (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.)
Beijing Tongbang Zhuoyi Technology Co ltd
Original Assignee
Beijing Tongbang Zhuoyi 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 Beijing Tongbang Zhuoyi Technology Co ltd filed Critical Beijing Tongbang Zhuoyi Technology Co ltd
Priority to CN202010318556.0A priority Critical patent/CN111506341B/en
Publication of CN111506341A publication Critical patent/CN111506341A/en
Application granted granted Critical
Publication of CN111506341B publication Critical patent/CN111506341B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3604Software analysis for verifying properties of programs

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Computer Security & Cryptography (AREA)
  • Stored Programmes (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The application relates to a software configuration information detection method, a device and a system, wherein the method comprises the following steps: reading a test configuration file and a production configuration file of software to be online; analyzing the test configuration file to obtain test configuration information, and analyzing the production configuration file to obtain production configuration information; comparing the test configuration information with the production configuration information to obtain a comparison result; and when the production configuration information is determined to meet the software online requirement according to the comparison result, performing online construction on the software to be online. According to the technical scheme, in the construction stage before software is on line, the software production configuration file is automatically checked to judge whether the software production configuration file meets the on-line condition, and if the software production configuration file meets the on-line condition, the software construction on-line operation is executed. Therefore, the problem that manual inspection is low in accuracy and consumes a large amount of manpower and time is avoided, the accuracy and efficiency of software configuration information inspection are improved, the online speed of software is increased, and the manpower cost and the time cost are saved.

Description

Software configuration information detection method, device and system
Technical Field
The present application relates to the field of information processing, and in particular, to a method, an apparatus, and a system for detecting software configuration information.
Background
A configuration file is essentially a file that contains the information needed to successfully operate a program, which is structured in a specific way. The configuration file is effectively a "dictionary", or "key-value pair". The program finds the value in the configuration file through the key, and assigns the value to the variable, thereby completing the data transmission from the configuration file to the program. The configuration file generally stores parameter configurations related to the code execution environment, but at present, the content in the configuration file is more and more, some possibly changed parameters, such as database connection parameters, variable values related to the online environment such as log paths, and the like, and some business behaviors are also put into the configuration file, so that the configuration information in the configuration file is more and more complex.
In the prior art, the configuration information is different between software testing and software online, and the configuration information needs to be modified into actual configuration information before the software is online, and at the moment, if the configuration information is wrong, the software online is influenced. At present, before software is on line, a developer needs to manually check configuration information, and due to the complexity of the configuration information, the accuracy of manual checking is low, and a large amount of labor and time are consumed.
Disclosure of Invention
In order to solve the technical problem or at least partially solve the technical problem, embodiments of the present application provide a method, an apparatus, and a system for detecting software configuration information.
In a first aspect, an embodiment of the present application provides a method for detecting software configuration information, including:
reading a test configuration file and a production configuration file of software to be online;
analyzing the test configuration file to obtain test configuration information, and analyzing the production configuration file to obtain production configuration information;
comparing the test configuration information with the production configuration information to obtain a comparison result;
and when the production configuration information is determined to meet the software online requirement according to the comparison result, performing online construction on the software to be online.
Optionally, the reading of the test configuration file and the production configuration file of the software to be online includes:
acquiring storage paths of the test configuration file and the production configuration file;
and reading the test configuration file and the production configuration file through the storage path.
Optionally, the analyzing the test configuration file to obtain the test configuration information includes:
determining a first file type corresponding to the test configuration file;
analyzing the test configuration file through a first analysis tool corresponding to the first file type to obtain the test configuration information;
analyzing the production configuration file to obtain production configuration information, including:
determining a second file type corresponding to the production configuration file;
and analyzing the production configuration file through a second analysis tool corresponding to the second file type to obtain the production configuration information.
Optionally, the method further includes:
when the comparison result shows that the production configuration file lacks configuration items, executing at least one of the following operations on the software to be online:
terminating the construction of the software to be online;
sending out a reminder;
and after completing the configuration items according to a preset configuration rule, executing construction online operation on the software to be online.
Optionally, the comparing the test configuration information with the production configuration information to obtain a comparison result includes:
checking whether an error configuration item exists in the production configuration file according to a preset configuration rule;
when the comparison result indicates that the production configuration file has the wrong configuration item, the method further includes:
after correcting the error configuration item according to the preset configuration rule, performing online construction operation on the software to be online;
and when the wrong configuration item cannot be corrected according to the preset configuration rule, terminating the construction of the software to be online.
Optionally, the method further includes:
and when the production configuration file is not read, terminating the construction of the software to be online.
In a second aspect, an embodiment of the present application provides a software configuration information detection apparatus, including:
the reading module is used for reading a test configuration file and a production configuration file of the software to be on-line;
the analysis module is used for analyzing the test configuration file to obtain test configuration information and analyzing the production configuration file to obtain production configuration information;
the comparison module is used for comparing the test configuration information with the production configuration information to obtain a comparison result;
and the execution module is used for executing construction online operation on the software to be online when the production configuration information is determined to meet the online requirement of the software according to the comparison result.
In a third aspect, an embodiment of the present application provides a software configuration information detection system, including: a software online module and a software configuration information detection plug-in module;
the software configuration information detection plug-in module is used for reading a test configuration file and a production configuration file corresponding to the software online module; analyzing the test configuration file to obtain test configuration information, and analyzing the production configuration file to obtain production configuration information; comparing the test configuration information with the production configuration information to obtain a comparison result; and when the production configuration information is determined to meet the online requirement of the software according to the comparison result, executing construction online operation on the online module of the software.
In a fourth aspect, an embodiment of the present application provides an electronic device, including: the system comprises a processor, a communication interface, a memory and a communication bus, wherein the processor, the communication interface and the memory complete mutual communication through the communication bus;
the memory is used for storing a computer program;
the processor is configured to implement the above method steps when executing the computer program.
In a fifth aspect, embodiments of the present application provide a computer-readable storage medium, on which a computer program is stored, which, when executed by a processor, implements the above-mentioned method steps.
Compared with the prior art, the technical scheme provided by the embodiment of the application has the following advantages:
in the construction stage before software is online, software production configuration files are automatically checked, the configuration files of a test environment and a production environment are compared, whether the configuration files meet the online condition of the software is judged, and if the configuration files meet the online condition of the software, the software is constructed and online operation is executed. Therefore, abnormal conditions caused after software construction and release to production can be avoided, meanwhile, the problem that manual inspection accuracy is low and a large amount of manpower and time are consumed is avoided, the accuracy and efficiency of software configuration information inspection are improved, the online speed of software is accelerated, and the manpower cost and the time cost are saved.
Drawings
The accompanying drawings, which are incorporated in and constitute a part of this specification, illustrate embodiments consistent with the invention and together with the description, serve to explain the principles of the invention.
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, and it is obvious for those skilled in the art that other drawings can be obtained according to the drawings without inventive exercise.
Fig. 1 is a flowchart of a software configuration information detection method according to an embodiment of the present application;
fig. 2 is a flowchart of a software configuration information detection method according to another embodiment of the present application;
fig. 3 is a block diagram of a software configuration information detection apparatus according to an embodiment of the present application;
fig. 4 is a schematic structural diagram of an electronic device according to an embodiment of the present application.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present application clearer, the technical solutions in the embodiments of the present application will be clearly and completely described below with reference to the drawings in the embodiments of the present application, and it is obvious that the described embodiments are some embodiments of the present application, but 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.
Because the software version under test is verified by the tester, all the configuration information that it depends on is complete, and the configuration information of the production environment cannot be verified under test, the configuration information of the production environment may be absent or incorrect.
For example, when the system is docked with a bank system, the test environment accesses the test server of the bank and uses the test environment key, while the production environment needs to access the production server of the bank and uses the production environment key, otherwise, the system cannot work normally.
Therefore, in the embodiment of the application, the configuration information of the software is automatically checked in a construction stage (a process of compiling and packaging a software source code into an executable program) before the software is online, the configuration information of the software in a test environment is compared with the configuration information in a production environment (a software environment for formally providing services for customers), and the software is constructed and online only when the configuration information in the production environment meets requirements.
First, a method for detecting software configuration information provided in an embodiment of the present invention is described below.
Fig. 1 is a flowchart of a software configuration information detection method according to an embodiment of the present application. As shown in fig. 1, the method comprises the steps of:
and step S11, reading the test configuration file and the production configuration file of the software to be online.
The production configuration file is actual configuration information when the software to be online is online.
And step S12, analyzing the test configuration file to obtain test configuration information, and analyzing the production configuration file to obtain production configuration information.
And selecting a corresponding analysis tool to analyze the configuration file based on the file type of the configuration file. And after analysis, obtaining the total software configuration information under the test environment and the production environment, wherein the software configuration information comprises a plurality of configuration items.
And step S13, comparing the test configuration information with the production configuration information to obtain a comparison result.
Typically, the software configuration information includes, but is not limited to, at least the following items:
(1) configuring a database address, a user name and a password;
(2) interface addresses and security credential configurations for interaction with other systems;
(3) and (4) controlling and configuring the authority.
By comparing, it can check whether the production configuration file is missing or lack configuration items in the production configuration file, or check whether wrong configuration items occur in the production configuration file through a preset configuration rule, and so on.
And step S14, when the production configuration information is determined to meet the on-line requirement of the software according to the comparison result, executing construction on-line operation on the software to be on-line.
The production configuration information meets the on-line requirement of software, and comprises complete production configuration files and correct configuration items.
In addition, for different comparison results, corresponding operations can be executed on the software to be online, such as termination of construction, construction after correction/completion, online and the like.
In this embodiment, in the construction stage before software is on-line, the software production configuration file is automatically checked, the configuration files of the test environment and the production environment are compared to judge whether the configuration files meet the on-line condition of the software, and if the configuration files meet the on-line condition of the software, the construction on-line operation of the software is executed. Therefore, abnormal conditions caused after software construction and release to production can be avoided, meanwhile, the problem that manual inspection accuracy is low and a large amount of manpower and time are consumed is avoided, the accuracy and efficiency of software configuration information inspection are improved, the online speed of software is accelerated, and the manpower cost and the time cost are saved.
Optionally, the method of this embodiment may be implemented by a plug-in, and in the software building stage, the production configuration information of the software is automatically checked by installing and running the plug-in.
In an alternative embodiment, step S11 includes: acquiring storage paths of a test configuration file and a production configuration file; and reading the test configuration file and the production configuration file through the storage path. When the plug-in runs, the storage paths of the configuration files of the test environment and the production environment can be respectively specified, and the plug-in can read the configuration files through the storage paths.
In addition, since test profiles and production profiles exist in a variety of file types, such as ini, properties, yaml, xml, and the like. For different types of configuration files, corresponding analysis tools can be adopted for analysis. Therefore, in step S12, the parsing the test configuration file to obtain the test configuration information includes: determining a first file type corresponding to the test configuration file; and analyzing the test configuration file through a first analysis tool corresponding to the first file type to obtain test configuration information. In step S12, analyzing the production configuration file to obtain production configuration information, including: determining a second file type corresponding to the production configuration file; and analyzing the production configuration file through a second analysis tool corresponding to the second file type to obtain the production configuration information.
Generally, the software may have the same configuration file type in the test environment as in the production environment, and thus the same parsing tool is used.
For example, an ini type configuration file may be parsed using an inipriser parsing library, and an xml type configuration file may be parsed using a parser such as dom (jaxp crimson), SAX (Simple API for XM L).
In this embodiment, in the detection process, the following situations exist in the production configuration file of the software to be online:
(1) leakage matching
And finding that the production configuration file of the software to be on-line lacks a configuration item by comparing the test configuration information with the production configuration information.
At this time, at least one of the following operations may be performed on the software to be online:
A. and (5) terminating the construction of the software to be online, namely stopping the online of the software to be online.
B. And sending out a prompt, wherein the relevant information of the misconfiguration configuration item of the production configuration file of the software to be on-line can be sent to the terminal of the software research and development personnel in the modes of messages, mails and the like.
C. And after the configuration items are supplemented according to the preset configuration rule, executing construction on-line operation on the software to be on-line. And for the configuration items of the missing configuration, completing the configuration items based on preset configuration rules, if the configuration items can be completed, constructing software and putting the software on line, and if the configuration items cannot be completed, terminating the construction.
(2) Mismatch
In the process of comparing the test configuration information with the production configuration information in step S13, it further includes checking whether there is an error configuration item in the production configuration file according to a preset configuration rule. When the comparison result is that an error configuration item exists in the production configuration file, the method further comprises the following steps:
A. after correcting the error configuration item according to the preset configuration rule, constructing software to be online;
B. and when the error configuration item can not be corrected according to the preset configuration rule, terminating the construction of the software to be online.
In addition, when a mismatch condition occurs, a prompt can be sent, and the related information of the wrong configuration item of the production configuration file of the software to be on-line is sent to the terminal of the software research and development personnel in a message, mail or other modes.
(3) Lack of profiles
And when the production configuration file is not read, stopping the construction of the software to be online.
In addition, a prompt can be given at the moment, and the condition that the software to be online lacks the production configuration file is sent to the terminal of the software research and development personnel in the modes of messages, mails and the like.
In this embodiment, by automatically comparing the test configuration file with the production configuration file, whether the production configuration file meets the software on-line condition can be checked, and abnormal conditions occurring after the software is constructed and released to production are avoided.
The method of this embodiment is described in detail below with reference to a specific example.
Fig. 2 is a flowchart of a software configuration information detection method according to another embodiment of the present application. As shown in fig. 2, the method further comprises the steps of:
step S21, reading a test configuration file and a production configuration file of the software;
step S22, judging whether the production configuration file is read, if yes, executing step S23, and if not, executing step S27;
step S23, analyzing the configuration file to obtain test configuration information and production configuration information;
step S24, comparing the test configuration information with the production configuration information, judging whether there is a lack configuration item or an error configuration item, if yes, executing step S25, if not, executing step 26;
step S25, judging whether the automatic completion or correction can be carried out through the preset configuration rule, if so, executing step S26, and if not, executing step S27;
step S26, constructing software and getting online;
step S27, the construction is terminated.
In the method of the embodiment, in the construction stage before the software is online, the software production configuration file is automatically checked to judge whether the software production configuration file meets the online condition, and if the software production configuration file meets the online condition, the software is constructed and online operation is executed. Therefore, the problem that manual inspection is low in accuracy and consumes a large amount of manpower and time is avoided, the accuracy and efficiency of software configuration information inspection are improved, the online speed of software is increased, and the manpower cost and the time cost are saved.
In addition, for the configuration items which are missed or mismatched in the production configuration file, automatic completion or correction can be carried out based on the preset configuration rule, the online speed of the software is further accelerated, and the labor cost and the time cost are saved.
The following are embodiments of the apparatus of the present application that may be used to perform embodiments of the method of the present application.
Fig. 3 is a block diagram of a software configuration information detection apparatus provided in an embodiment of the present application, which may be implemented as part or all of an electronic device through software, hardware, or a combination of the two. As shown in fig. 3, the software configuration information detecting apparatus includes:
the reading module 31 is used for reading a test configuration file and a production configuration file of software to be on-line;
the analysis module 32 is configured to analyze the test configuration file to obtain test configuration information, and analyze the production configuration file to obtain production configuration information;
the comparison module 33 is configured to compare the test configuration information with the production configuration information to obtain a comparison result;
and the execution module 34 is configured to, when it is determined according to the comparison result that the production configuration information meets the online requirement of the software, execute a build online operation on the software to be online.
An embodiment of the present application further provides a software configuration information detection system, including: the software on-line module and the software configuration information detection plug-in module.
The software configuration information detection plug-in module is used for reading a test configuration file and a production configuration file corresponding to the software online module; analyzing the test configuration file to obtain test configuration information, and analyzing the production configuration file to obtain production configuration information; comparing the test configuration information with the production configuration information to obtain a comparison result; and when the production configuration information is determined to meet the online requirement of the software according to the comparison result, executing construction online operation on the online module of the software.
An embodiment of the present application further provides an electronic device, as shown in fig. 4, the electronic device may include: the system comprises a processor 1501, a communication interface 1502, a memory 1503 and a communication bus 1504, wherein the processor 1501, the communication interface 1502 and the memory 1503 complete communication with each other through the communication bus 1504.
A memory 1503 for storing a computer program;
the processor 1501, when executing the computer program stored in the memory 1503, implements the steps of the method embodiments described below.
The communication bus mentioned in the electronic device may be a peripheral component interconnect (pci) bus, an Extended Industry Standard Architecture (EISA) bus, or the like. The communication bus may be divided into an address bus, a data bus, a control bus, etc. For ease of illustration, only one thick line is shown, but this does not mean that there is only one bus or one type of bus.
The communication interface is used for communication between the electronic equipment and other equipment.
The Memory may include a Random Access Memory (RAM) or a Non-Volatile Memory (NVM), such as at least one disk Memory. Optionally, the memory may also be at least one memory device located remotely from the processor.
The Processor may be a general-purpose Processor, including a Central Processing Unit (CPU), a Network Processor (NP), and the like; but also Digital Signal Processors (DSPs), Application Specific Integrated Circuits (ASICs), Field Programmable Gate Arrays (FPGAs) or other Programmable logic devices, discrete Gate or transistor logic devices, discrete hardware components.
The present application also provides a computer-readable storage medium having stored thereon a computer program which, when being executed by a processor, carries out the steps of the method embodiments described below.
It should be noted that, for the above-mentioned apparatus, electronic device and computer-readable storage medium embodiments, since they are basically similar to the method embodiments, the description is relatively simple, and for the relevant points, reference may be made to the partial description of the method embodiments.
It is further noted that, herein, relational terms such as "first" and "second," and the like, may be used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Also, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
The foregoing are merely exemplary embodiments of the present invention, which enable those skilled in the art to understand or practice the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (10)

1. A software configuration information detection method is characterized by comprising the following steps:
reading a test configuration file and a production configuration file of software to be online;
analyzing the test configuration file to obtain test configuration information, and analyzing the production configuration file to obtain production configuration information;
comparing the test configuration information with the production configuration information to obtain a comparison result;
and when the production configuration information is determined to meet the software online requirement according to the comparison result, performing online construction on the software to be online.
2. The method of claim 1, wherein reading the test configuration file and the production configuration file of the software to be online comprises:
acquiring storage paths of the test configuration file and the production configuration file;
and reading the test configuration file and the production configuration file through the storage path.
3. The method of claim 1, wherein parsing the test configuration file to obtain test configuration information comprises:
determining a first file type corresponding to the test configuration file;
analyzing the test configuration file through a first analysis tool corresponding to the first file type to obtain the test configuration information;
analyzing the production configuration file to obtain production configuration information, including:
determining a second file type corresponding to the production configuration file;
and analyzing the production configuration file through a second analysis tool corresponding to the second file type to obtain the production configuration information.
4. The method of claim 1, further comprising:
when the comparison result shows that the production configuration file lacks configuration items, executing at least one of the following operations on the software to be online:
terminating the construction of the software to be online;
sending out a reminder;
and after completing the configuration items according to a preset configuration rule, executing construction online operation on the software to be online.
5. The method of claim 1, wherein said comparing the test configuration information and the production configuration information to obtain a comparison result comprises:
checking whether an error configuration item exists in the production configuration file according to a preset configuration rule;
when the comparison result indicates that the production configuration file has the wrong configuration item, the method further includes:
after correcting the error configuration item according to the preset configuration rule, performing online construction operation on the software to be online;
and when the wrong configuration item cannot be corrected according to the preset configuration rule, terminating the construction of the software to be online.
6. The method of claim 1, further comprising:
and when the production configuration file is not read, terminating the construction of the software to be online.
7. A software configuration information detection apparatus, comprising:
the reading module is used for reading a test configuration file and a production configuration file of the software to be on-line;
the analysis module is used for analyzing the test configuration file to obtain test configuration information and analyzing the production configuration file to obtain production configuration information;
the comparison module is used for comparing the test configuration information with the production configuration information to obtain a comparison result;
and the execution module is used for executing construction online operation on the software to be online when the production configuration information is determined to meet the online requirement of the software according to the comparison result.
8. A software configuration information detection system, comprising: a software online module and a software configuration information detection plug-in module;
the software configuration information detection plug-in module is used for reading a test configuration file and a production configuration file corresponding to the software online module; analyzing the test configuration file to obtain test configuration information, and analyzing the production configuration file to obtain production configuration information; comparing the test configuration information with the production configuration information to obtain a comparison result; and when the production configuration information is determined to meet the online requirement of the software according to the comparison result, executing construction online operation on the online module of the software.
9. An electronic device, comprising: the system comprises a processor, a communication interface, a memory and a communication bus, wherein the processor, the communication interface and the memory complete mutual communication through the communication bus;
the memory is used for storing a computer program;
the processor, when executing the computer program, implementing the method steps of any of claims 1-6.
10. A computer-readable storage medium, on which a computer program is stored which, when being executed by a processor, carries out the method steps of any one of claims 1 to 6.
CN202010318556.0A 2020-04-21 2020-04-21 Software configuration information detection method, device and system Active CN111506341B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010318556.0A CN111506341B (en) 2020-04-21 2020-04-21 Software configuration information detection method, device and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010318556.0A CN111506341B (en) 2020-04-21 2020-04-21 Software configuration information detection method, device and system

Publications (2)

Publication Number Publication Date
CN111506341A true CN111506341A (en) 2020-08-07
CN111506341B CN111506341B (en) 2023-11-03

Family

ID=71869863

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010318556.0A Active CN111506341B (en) 2020-04-21 2020-04-21 Software configuration information detection method, device and system

Country Status (1)

Country Link
CN (1) CN111506341B (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112069084A (en) * 2020-11-12 2020-12-11 深圳开源互联网安全技术有限公司 Open source software configuration file detection and analysis method
CN112433943A (en) * 2020-11-25 2021-03-02 平安普惠企业管理有限公司 Method, device, equipment and medium for detecting environment variable based on abstract syntax tree
CN112596776A (en) * 2020-12-10 2021-04-02 平安普惠企业管理有限公司 Software publishing method, device, equipment and medium based on remote control
CN112905464A (en) * 2021-02-09 2021-06-04 中国工商银行股份有限公司 Application running environment data processing method and device
CN113923119A (en) * 2021-10-09 2022-01-11 中国银行股份有限公司 Method and device for checking configuration parameters constructed by Maven project

Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2004046731A (en) * 2002-07-15 2004-02-12 Toshiba Corp Disposition verification apparatus and method
CN101695028A (en) * 2009-10-16 2010-04-14 杭州华三通信技术有限公司 Method and device for configuring simple network management protocol
US20170102988A1 (en) * 2015-10-12 2017-04-13 Bank Of America Corporation Event correlation and calculation engine
CN107423174A (en) * 2017-06-01 2017-12-01 广州信维电子科技股份有限公司 Method of testing, device and the storage medium of server configuration information
CN108574720A (en) * 2017-05-09 2018-09-25 北京金山云网络技术有限公司 A kind of service loading method and device
GB201814137D0 (en) * 2017-10-16 2018-10-17 Wise Network Science And Tech Consultancy Limited Method for model checking on the design of security checking software of safety-critical distributed storage system
CN108717360A (en) * 2018-08-24 2018-10-30 江苏神州信源系统工程有限公司 A kind of software version updating method and device
CN109697150A (en) * 2018-12-14 2019-04-30 平安普惠企业管理有限公司 Show method, apparatus, computer equipment and the storage medium of test report
CN109814877A (en) * 2018-12-14 2019-05-28 深圳壹账通智能科技有限公司 Project dispositions method and its device based on environmental management
CN110069277A (en) * 2019-03-16 2019-07-30 平安普惠企业管理有限公司 Using loading method, using online equipment, storage medium and device

Patent Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2004046731A (en) * 2002-07-15 2004-02-12 Toshiba Corp Disposition verification apparatus and method
CN101695028A (en) * 2009-10-16 2010-04-14 杭州华三通信技术有限公司 Method and device for configuring simple network management protocol
US20170102988A1 (en) * 2015-10-12 2017-04-13 Bank Of America Corporation Event correlation and calculation engine
CN108574720A (en) * 2017-05-09 2018-09-25 北京金山云网络技术有限公司 A kind of service loading method and device
CN107423174A (en) * 2017-06-01 2017-12-01 广州信维电子科技股份有限公司 Method of testing, device and the storage medium of server configuration information
GB201814137D0 (en) * 2017-10-16 2018-10-17 Wise Network Science And Tech Consultancy Limited Method for model checking on the design of security checking software of safety-critical distributed storage system
CN108717360A (en) * 2018-08-24 2018-10-30 江苏神州信源系统工程有限公司 A kind of software version updating method and device
CN109697150A (en) * 2018-12-14 2019-04-30 平安普惠企业管理有限公司 Show method, apparatus, computer equipment and the storage medium of test report
CN109814877A (en) * 2018-12-14 2019-05-28 深圳壹账通智能科技有限公司 Project dispositions method and its device based on environmental management
CN110069277A (en) * 2019-03-16 2019-07-30 平安普惠企业管理有限公司 Using loading method, using online equipment, storage medium and device

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112069084A (en) * 2020-11-12 2020-12-11 深圳开源互联网安全技术有限公司 Open source software configuration file detection and analysis method
CN112433943A (en) * 2020-11-25 2021-03-02 平安普惠企业管理有限公司 Method, device, equipment and medium for detecting environment variable based on abstract syntax tree
CN112596776A (en) * 2020-12-10 2021-04-02 平安普惠企业管理有限公司 Software publishing method, device, equipment and medium based on remote control
CN112905464A (en) * 2021-02-09 2021-06-04 中国工商银行股份有限公司 Application running environment data processing method and device
CN112905464B (en) * 2021-02-09 2024-02-02 中国工商银行股份有限公司 Application running environment data processing method and device
CN113923119A (en) * 2021-10-09 2022-01-11 中国银行股份有限公司 Method and device for checking configuration parameters constructed by Maven project

Also Published As

Publication number Publication date
CN111506341B (en) 2023-11-03

Similar Documents

Publication Publication Date Title
CN111506341B (en) Software configuration information detection method, device and system
CN109062809B (en) Online test case generation method and device and electronic equipment
US20080301813A1 (en) Testing Software Applications with Schema-based Fuzzing
US8572747B2 (en) Policy-driven detection and verification of methods such as sanitizers and validators
CN110704304A (en) Application program testing method and device, storage medium and server
CN114064208A (en) Method and device for detecting application service state, electronic equipment and storage medium
CN111427771A (en) Code coverage rate analysis method, equipment, server and readable storage medium
CN108009085B (en) Channel package testing method
CN111104319A (en) Code coverage rate testing method and device, electronic equipment and storage medium
CN109558315B (en) Method, device and equipment for determining test range
CN112306568A (en) Service instance configuration method and device, electronic equipment and storage medium
CN113392000A (en) Test case execution result analysis method, device, equipment and storage medium
CN111858377A (en) Quality evaluation method and device for test script, electronic device and storage medium
Ueda et al. Automatically customizing static analysis tools to coding rules really followed by developers
CN111475400A (en) Verification method of service platform and related equipment
CN113238940A (en) Interface test result comparison method, device, equipment and storage medium
CN111597101B (en) SDK access state detection method, computer equipment and computer readable storage medium
CN109165127B (en) Problem interface positioning method and device and electronic equipment
CN110633204B (en) Program defect detection method and device
CN115545677B (en) Online process specification detection method and system based on automatic case execution condition
CN110618943A (en) Security service test method and device, electronic equipment and readable storage medium
CN114911467B (en) Code detection method, device, electronic equipment and storage medium
CN115640236B (en) Script quality detection method and computing device
CN114253846B (en) Automatic test abnormality positioning method, device, equipment and readable storage medium
CN115964260A (en) Software quality inspection method and related product

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