US8478847B2 - Blocking a selected port prior to installation of an application - Google Patents

Blocking a selected port prior to installation of an application Download PDF

Info

Publication number
US8478847B2
US8478847B2 US12/700,539 US70053910A US8478847B2 US 8478847 B2 US8478847 B2 US 8478847B2 US 70053910 A US70053910 A US 70053910A US 8478847 B2 US8478847 B2 US 8478847B2
Authority
US
United States
Prior art keywords
ports
application
selected port
test application
functions
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.)
Expired - Fee Related, expires
Application number
US12/700,539
Other versions
US20110191450A1 (en
Inventor
Matthew Everett Brooks
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.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
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 International Business Machines Corp filed Critical International Business Machines Corp
Priority to US12/700,539 priority Critical patent/US8478847B2/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BROOKS, MATTHEW EVERETT
Publication of US20110191450A1 publication Critical patent/US20110191450A1/en
Priority to US13/895,248 priority patent/US9092574B2/en
Application granted granted Critical
Publication of US8478847B2 publication Critical patent/US8478847B2/en
Priority to US14/731,725 priority patent/US9875176B2/en
Priority to US15/837,574 priority patent/US10394702B2/en
Expired - Fee Related legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/61Installation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3688Test management for test execution, e.g. scheduling of test suites
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3664Environments for testing or debugging software
    • 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
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F15/00Digital computers in general; Data processing equipment in general
    • G06F15/16Combinations of two or more digital computers each having at least an arithmetic unit, a program unit and a register, e.g. for a simultaneous processing of several programs
    • G06F15/177Initialisation or configuration control

Definitions

  • the disclosure relates to a method, a system, and a computer program product for blocking a selected port prior to installation of an application.
  • test application Functions performed by an application may have to be tested on a computational device.
  • the application whose functions are tested may be referred to as a test application.
  • the test application may be implemented via code, wherein various code paths may be executed when the code is executed within the computational platform.
  • the test application Prior to testing the functions performed by the test application, the test application has to be installed in the computational platform.
  • An installer application maintained in the computational platform may install the test application.
  • the computational device on which the functions of the test application are tested may include a plurality of ports.
  • a port of the plurality of ports may be bound to a socket, and the port may be used for communications with the application.
  • an installer application implemented in a computational device receives a command to install a test application in the computational device.
  • the installer application determines whether a selected port of a plurality of ports of the computational device is to be blocked prior to installing the test application in the computational device.
  • the installer application blocks the selected port, installs the test application by binding a socket to the selected port of the plurality of ports, and tests functions of the test application by executing one or more code paths of the test application, in response to installing the test application.
  • the one or more code paths include a first code path and a second code path, wherein the selected port is used in the first code path, and the selected port is not used in the second code path.
  • the selected port is unblocked, in response to determining that the selected port is blocked.
  • Functions of the test application are tested by executing the one or more code paths of the test application, in response to unblocking the selected port.
  • the installer application provides an interface with selections to: block one or more ports of the plurality of ports; list ports that are blocked in the plurality of ports; bind one or more sockets to corresponding ports of the plurality of ports; and, close the one or more sockets to the corresponding ports of the plurality of ports.
  • the plurality of ports are a plurality of TCP/IP ports, wherein the socket is reservation on a TCP/IP port of the plurality of TCP/IP ports.
  • FIG. 1 illustrates a block diagram of a computational device, in accordance with certain embodiments
  • FIG. 2 illustrates a block diagram that shows installation of an exemplary application in the computational device by an installer application, in accordance with certain embodiments
  • FIG. 3 illustrates a block diagram that shows installation of a test application in the computational device by an installer application, in accordance with certain embodiments
  • FIG. 4 illustrates a block diagram that shows first operations, in accordance with certain embodiments
  • FIG. 5 illustrates a block diagram that shows second operations, in accordance with certain embodiments
  • FIG. 6 illustrates a block diagram that shows selection operations provided by an interface, in accordance with certain embodiments.
  • FIG. 7 illustrates a block diagram of a computational system that shows certain elements that may be included in the computational device of FIG. 1 , in accordance with certain embodiments.
  • a selected port that may be needed by the application is blocked prior to installing an application.
  • the selected port that is blocked is then assigned to the application during installation. As a result, installation and execution of the application may proceed without generating any error and no reinstallation of the application may be needed. If the selected port is not blocked prior to installing the application, and if the selected port is in use by some other application, then installation and execution of the application may generate an error.
  • a tool that interacts with a user via a graphical user interface or a command line interface.
  • the user input may be a port number and the tool may bind a socket to the port indicated by the port number.
  • the tool may maintain a list of all ports that has a socket bound to the ports. At any time, the user can close the socket and release a port. If the user attempts to bind a port that already has a socket bound to the port, an error may be displayed. Users may not be allowed to exit the tool until all bound ports have been closed.
  • FIG. 1 illustrates a block diagram of a computational environment 100 that includes a computational platform 102 , in accordance with certain embodiments.
  • the computational platform 102 may comprise any suitable computational device, including those presently known in the art, such as, a personal computer, a workstation, a server, a mainframe, a hand held computer, a palm top computer, a telephony device, a network appliance, a blade computer, a storage server, etc.
  • the computational device platform 102 is also referred to as a computational device 102 .
  • the computational device 102 includes an installer application 104 and a plurality of ports 106 a , 106 b , . . . , 106 n , wherein a port is a logical or virtual data connection that can be used by programs to exchange data directly, instead of going through a file or other temporary storage location.
  • the plurality of ports 106 a . . . 106 n are Transmission Control protocol/Internet Protocol (TCP/IP) ports.
  • TCP/IP Transmission Control protocol/Internet Protocol
  • the installer application 104 may install and test the functions of a test application 108 in the computational device 102 .
  • the installer application 104 installs the test application 108 and another application tests the functions of the test application 104 .
  • the test application 108 that may be installed and tested by the installer application 104 may include a plurality of code paths, such as an exemplary first code path 120 and an exemplary second code path 122 .
  • a code path is a sequence of operations that may be executed when the test application 108 is executed. For example, executing a certain branch of a conditional operation in the code of the test application 108 may cause the execution of the first code path 120 .
  • a selected port may be used by the first code path (as shown via reference numeral 124 ) and when the second code path 122 is executed the selected port is not used (as shown via reference numeral 126 ), wherein the selected port may be any of the plurality of ports 106 a . . . 106 n.
  • the installer application 104 may block a selected port that is to be used by the test application 108 .
  • a socket 128 may then be bound to the selected port while installing the test application 108 , wherein a socket is a reservation on a port.
  • the interface 110 is used by a user to receive information and provide input to the installer application 104 for blocking the selected port and for binding a socket to the selected port.
  • operations of the test application 108 may be tested by executing the code paths 120 , 122 . While testing the test application 108 , a user may release the selected port by interacting with the interface 110 while testing certain code paths, without reinstalling the test application 108 .
  • FIG. 2 illustrates a block diagram 200 that shows a first exemplary embodiment 202 , in which an exemplary application 204 is installed in the computational device 102 (shown in FIG. 1 ) by an exemplary installer application 206 , in accordance with certain embodiments.
  • the computational device 102 may include at least three exemplary ports, e.g. port X 208 , port Y 210 , and port Z 212 .
  • the exemplary application 204 may include code that uses port X 208 (shown via reference numeral 214 ).
  • the exemplary installer application 206 may block port X 208 before installing the exemplary application 204 (shown via reference numeral 216 ). Subsequent to blocking port X 208 , the exemplary installer application 206 binds port X 208 to a socket corresponding to the exemplary application 204 during installation of the exemplary application 204 (shown via reference numeral 218 ). As a result of blocking port X 208 prior to installing the exemplary application 204 , errors that may be caused because of the unavailability of port X 208 are not generated and reinstallation of the exemplary application 204 is avoided.
  • FIG. 3 illustrates a block diagram 300 that shows a second exemplary embodiment 302 , in which an exemplary test application 304 is installed in the computational device 102 (shown in FIG. 1 ) by an installer application (such as installer application 104 ), in accordance with certain embodiments.
  • an installer application such as installer application 104
  • the exemplary test application 304 includes a first code path 306 and a second code path 308 .
  • first code path 306 an exemplary port 23456 is in use (shown via reference numeral 310 ), and in the second code path 308 the exemplary port 23456 is not in use (shown via reference numeral 312 ).
  • the exemplary test application 304 is to be installed and tested by the installer application 104 (shown via reference numeral 314 ).
  • the installer application 104 blocks (reference numeral 316 ) port 23456 and then binds (reference numeral 318 ) a socket to port 23456 to install the exemplary test application 304 .
  • port 23456 is bound to a socket corresponding to the test application 304 (shown via reference numeral 324 ), and other ports (shown via reference numerals 322 , 326 ) may not be blocked.
  • the installer application 104 or some other application may be used to test the functions (e.g., the first code path 206 ) of the exemplary test application 304 (shown via reference numeral 328 ). Subsequently, in certain embodiments the installer application 104 may unblock port 23456 by closing the socket to port 23456 (shown via reference numeral 330 ). The state of the ports after port 23456 has been unblocked is shown via reference numerals 332 , 334 , 336 , 338 . The installer application 104 tests additional functions (e.g., the second code path 308 ) of the exemplary test application 308 (shown via reference numeral 340 ).
  • additional functions e.g., the second code path 308
  • FIG. 3 illustrates certain embodiments in which a selected port that is to be used by an exemplary test application is blocked prior to installing the exemplary test application.
  • various operations on ports and sockets may be performed via the interface 110 to test additional functions in the exemplary test application 304 , without reinstalling the exemplary test application 304 .
  • FIG. 4 illustrates a block diagram that shows first operations 400 , in accordance with certain embodiments.
  • the first operations 400 may be performed by the installer application 104 implemented in the computational device 102 shown in FIG. 1 .
  • Control starts at block 402 , in which the installer application 104 starts executing.
  • the installer application 104 receives (at block 404 ) a command to install a test application 108 , wherein the test application 108 may use a selected port in certain code paths executed by the test application 108 .
  • the installer application 104 initiates (at block 406 ) a query (e.g., for a user via the interface 110 ) to determine the identity of the selected port and to determine whether the selected port is to be blocked.
  • the query to the user via the interface 110 may determine (at block 408 ) whether the selected port is to be blocked. If a determination is made at block 408 that the selected port is to be blocked, then the installer application 104 blocks (at block 410 ) the selected port. The installer application 104 binds (at block 412 ) a socket to the selected port, then installs the test application 108 , and then tests code paths in the test application 108 . If a determination is made at block 408 that the selected port is not to be blocked, then control returns to block 404 .
  • the installer application 104 binds (at block 416 ) additional ports to sockets (based on user input via the user interface 110 ) and tests additional code paths in the installed test application 108 . No reinstallation of the test application 108 is needed while testing the additional code paths. Subsequently, all bound ports and sockets are released (at block 418 ) and the installer application 104 stops (at block 420 ).
  • FIG. 5 illustrates a block diagram that shows second operations 500 , in accordance with certain embodiments.
  • the second operations 500 may be performed by the installer application 104 implemented in the computational device 102 shown in FIG. 1 .
  • Control starts at block 502 in which an installer application 104 implemented in a computational device 102 receives a command to install a test application 108 in the computational device 102 .
  • the installer application 104 determines (at block 504 ) whether a selected port of a plurality of ports 106 a . . . 106 n of the computational device 102 is to be blocked prior to installing the test application 108 in the computational device 102 .
  • Control proceeds to block 506 , wherein in response to determining that the selected port is to be blocked prior to installing the test application 108 in the computational device 102 , the installer application 104 blocks the selected port, installs the test application 108 by binding a socket to the selected port of the plurality of ports 106 a . . . 106 n after blocking the selected port, and tests functions of the test application 108 by executing one or more code paths 120 , 122 of the test application 108 , in response to installing the test application 108 .
  • the selected port is unblocked, i.e., released by closing the socket on the selected port, (at block 508 ), in response to determining that the selected port is blocked.
  • Functions of the test application 108 are tested (at block 510 ) by executing the one or more code paths of the test application 108 , in response to unblocking the selected port.
  • FIGS. 1-5 illustrate certain embodiments in which prior to installing an application, selected ports that may be needed by the application are blocked. As a result, installation and execution of the application may proceed without error and no reinstallation of the application may be needed.
  • FIG. 6 illustrates a block diagram 600 that shows exemplary embodiments 602 of exemplary selection operations, exemplary input operations and exemplary output operations that are provided and received via the interface 110 of the installer application 104 shown in FIG. 1 .
  • FIG. 6 also shows various selections that may be made by a user from the exemplary selections provided by the interface 110 .
  • the interface 110 may be used to request a user to designate an alternate port.
  • sockets are bound to ports on an as needed basis as opposed to reinstalling an application. Embodiments provide a mechanism for code developers and code testers to test any product that allows for user defined ports and also provide mechanisms to check for the availability of ports.
  • aspects of the embodiments may take the form of an entirely hardware embodiment, an entirely software embodiment (including firmware, resident software, micro-code, etc.) or an embodiment combining software and hardware aspects that may all generally be referred to herein as a “circuit,” “module” or “system.”
  • aspects of the embodiments may take the form of a computer program product embodied in one or more computer readable medium(s) having computer readable program code embodied there.
  • the computer readable medium may be a computer readable signal medium or a computer readable storage medium.
  • a computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any suitable combination of the foregoing.
  • a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
  • a computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated signal may take any of a variety of forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof.
  • a computer readable signal medium may be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
  • Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
  • Computer program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java*, Smalltalk, C++ or the like and conventional procedural programming languages, such as the “C” programming language or similar programming languages.
  • the program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server.
  • the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
  • LAN local area network
  • WAN wide area network
  • Java is a trademark or registered trademark of Sun Microsystems, Inc.
  • These computer program instructions may also be stored in a computer readable medium that can direct a computer, other programmable data processing apparatus, or other devices to function in a particular manner, such that the instructions stored in the computer readable medium produce an article of manufacture including instructions which implement the function/act specified in the flowchart and/or block diagram block or blocks.
  • the computer program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other devices to cause a series of operational steps to be performed on the computer, other programmable apparatus or other devices to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide processes for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
  • FIG. 7 illustrates a block diagram that shows certain elements that may be included in the system 700 in accordance with certain embodiments.
  • the system 700 may comprise the computational device 102 and may include a circuitry 702 that may in certain embodiments include at least a processor 704 .
  • the system 700 may also include a memory 706 (e.g., a volatile memory device), and storage 708 .
  • the storage 708 may include a non-volatile memory device (e.g., EEPROM, ROM, PROM, RAM, DRAM, SRAM, flash, firmware, programmable logic, etc.), magnetic disk drive, optical disk drive, tape drive, etc.
  • the storage 708 may comprise an internal storage device, an attached storage device and/or a network accessible storage device.
  • the system 700 may include a program logic 710 including code 712 that may be loaded into the memory 706 and executed by the processor 704 or circuitry 702 .
  • the program logic 710 including code 712 may be stored in the storage 708 .
  • the program logic 710 may be implemented in the circuitry 702 . Therefore, while FIG. 7 shows the program logic 710 separately from the other elements, the program logic 710 may be implemented in the memory 706 and/or the circuitry 702 .
  • Certain embodiments may be directed to a method for deploying computing instruction by a person or automated processing integrating computer-readable code into a computing system, wherein the code in combination with the computing system is enabled to perform the operations of the described embodiments.
  • an embodiment means “one or more (but not all) embodiments of the present invention(s)” unless expressly specified otherwise.
  • Devices that are in communication with each other need not be in continuous communication with each other, unless expressly specified otherwise.
  • devices that are in communication with each other may communicate directly or indirectly through one or more intermediaries.

Abstract

An installer application implemented in a computational device receives a command to install a test application in the computational device. The installer application determines whether a selected port of a plurality of ports of the computational device is to be blocked prior to installing the test application in the computational device. In response to determining that the selected port is to be blocked prior to installing the test application in the computational device, the installer application blocks the selected port, installs the test application by binding a socket to the selected port of the plurality of ports, and tests functions of the test application by executing one or more code paths of the test application, in response to installing the test application.

Description

BACKGROUND
1. Field
The disclosure relates to a method, a system, and a computer program product for blocking a selected port prior to installation of an application.
2. Background
Functions performed by an application may have to be tested on a computational device. The application whose functions are tested may be referred to as a test application. The test application may be implemented via code, wherein various code paths may be executed when the code is executed within the computational platform. Prior to testing the functions performed by the test application, the test application has to be installed in the computational platform. An installer application maintained in the computational platform may install the test application.
The computational device on which the functions of the test application are tested may include a plurality of ports. When an application is installed in the computational device, a port of the plurality of ports may be bound to a socket, and the port may be used for communications with the application.
SUMMARY OF THE PREFERRED EMBODIMENTS
Provided are a method, a system, and a computer program product, wherein an installer application implemented in a computational device receives a command to install a test application in the computational device. The installer application determines whether a selected port of a plurality of ports of the computational device is to be blocked prior to installing the test application in the computational device. In response to determining that the selected port is to be blocked prior to installing the test application in the computational device, the installer application blocks the selected port, installs the test application by binding a socket to the selected port of the plurality of ports, and tests functions of the test application by executing one or more code paths of the test application, in response to installing the test application.
In certain embodiments, the one or more code paths include a first code path and a second code path, wherein the selected port is used in the first code path, and the selected port is not used in the second code path.
In further embodiments, the selected port is unblocked, in response to determining that the selected port is blocked. Functions of the test application are tested by executing the one or more code paths of the test application, in response to unblocking the selected port.
In yet further embodiments, the installer application provides an interface with selections to: block one or more ports of the plurality of ports; list ports that are blocked in the plurality of ports; bind one or more sockets to corresponding ports of the plurality of ports; and, close the one or more sockets to the corresponding ports of the plurality of ports.
In certain embodiments, the plurality of ports are a plurality of TCP/IP ports, wherein the socket is reservation on a TCP/IP port of the plurality of TCP/IP ports.
BRIEF DESCRIPTION OF THE DRAWINGS
Referring now to the drawings in which like reference numbers represent corresponding parts throughout:
FIG. 1 illustrates a block diagram of a computational device, in accordance with certain embodiments;
FIG. 2 illustrates a block diagram that shows installation of an exemplary application in the computational device by an installer application, in accordance with certain embodiments;
FIG. 3 illustrates a block diagram that shows installation of a test application in the computational device by an installer application, in accordance with certain embodiments;
FIG. 4 illustrates a block diagram that shows first operations, in accordance with certain embodiments;
FIG. 5 illustrates a block diagram that shows second operations, in accordance with certain embodiments;
FIG. 6 illustrates a block diagram that shows selection operations provided by an interface, in accordance with certain embodiments; and
FIG. 7 illustrates a block diagram of a computational system that shows certain elements that may be included in the computational device of FIG. 1, in accordance with certain embodiments.
DETAILED DESCRIPTION
In the following description, reference is made to the accompanying drawings which form a part hereof and which illustrate several embodiments. It is understood that other embodiments may be utilized and structural and operational changes may be made.
In certain embodiments, prior to installing an application, a selected port that may be needed by the application is blocked. The selected port that is blocked is then assigned to the application during installation. As a result, installation and execution of the application may proceed without generating any error and no reinstallation of the application may be needed. If the selected port is not blocked prior to installing the application, and if the selected port is in use by some other application, then installation and execution of the application may generate an error.
In certain embodiments, a tool that interacts with a user via a graphical user interface or a command line interface is provided. The user input may be a port number and the tool may bind a socket to the port indicated by the port number. The tool may maintain a list of all ports that has a socket bound to the ports. At any time, the user can close the socket and release a port. If the user attempts to bind a port that already has a socket bound to the port, an error may be displayed. Users may not be allowed to exit the tool until all bound ports have been closed.
Exemplary Embodiments
FIG. 1 illustrates a block diagram of a computational environment 100 that includes a computational platform 102, in accordance with certain embodiments. In certain embodiments, the computational platform 102 may comprise any suitable computational device, including those presently known in the art, such as, a personal computer, a workstation, a server, a mainframe, a hand held computer, a palm top computer, a telephony device, a network appliance, a blade computer, a storage server, etc. The computational device platform 102 is also referred to as a computational device 102.
The computational device 102 includes an installer application 104 and a plurality of ports 106 a, 106 b, . . . , 106 n, wherein a port is a logical or virtual data connection that can be used by programs to exchange data directly, instead of going through a file or other temporary storage location. In certain embodiments, the plurality of ports 106 a . . . 106 n are Transmission Control protocol/Internet Protocol (TCP/IP) ports. The installer application 104 may install and test the functions of a test application 108 in the computational device 102. In certain alternative embodiments, the installer application 104 installs the test application 108 and another application tests the functions of the test application 104.
In certain embodiments, the installer application 104 may be executed in the computational device 102 to generate an interface 110, such as a graphical user interface or a command line interface, for receiving input from a user and for displaying results to a user. The interface 110 may provide selections to block a selected port 112, list ports that are blocked 114, bind a socket to a port, close a socket to a port 118, etc. The installer application 104 allows interaction with a user via the interface 110. The installer application 104 and the interface 110 may be integrated into a programming tool provided to a user, wherein the programming tool is executed in the computational device 102 via interactions with the user.
The test application 108 that may be installed and tested by the installer application 104 may include a plurality of code paths, such as an exemplary first code path 120 and an exemplary second code path 122. A code path is a sequence of operations that may be executed when the test application 108 is executed. For example, executing a certain branch of a conditional operation in the code of the test application 108 may cause the execution of the first code path 120. In an exemplary embodiment, when the first code path 120 is executed a selected port may be used by the first code path (as shown via reference numeral 124) and when the second code path 122 is executed the selected port is not used (as shown via reference numeral 126), wherein the selected port may be any of the plurality of ports 106 a . . . 106 n.
In certain embodiments, prior to installing the test application 108, the installer application 104 may block a selected port that is to be used by the test application 108. A socket 128 may then be bound to the selected port while installing the test application 108, wherein a socket is a reservation on a port. In certain embodiments, the interface 110 is used by a user to receive information and provide input to the installer application 104 for blocking the selected port and for binding a socket to the selected port. After the test application 108 has been installed, operations of the test application 108 may be tested by executing the code paths 120, 122. While testing the test application 108, a user may release the selected port by interacting with the interface 110 while testing certain code paths, without reinstalling the test application 108.
FIG. 2 illustrates a block diagram 200 that shows a first exemplary embodiment 202, in which an exemplary application 204 is installed in the computational device 102 (shown in FIG. 1) by an exemplary installer application 206, in accordance with certain embodiments.
In the first exemplary embodiment 202, the computational device 102 may include at least three exemplary ports, e.g. port X 208, port Y 210, and port Z 212. The exemplary application 204 may include code that uses port X 208 (shown via reference numeral 214).
The exemplary installer application 206 may block port X 208 before installing the exemplary application 204 (shown via reference numeral 216). Subsequent to blocking port X 208, the exemplary installer application 206 binds port X 208 to a socket corresponding to the exemplary application 204 during installation of the exemplary application 204 (shown via reference numeral 218). As a result of blocking port X 208 prior to installing the exemplary application 204, errors that may be caused because of the unavailability of port X 208 are not generated and reinstallation of the exemplary application 204 is avoided.
FIG. 3 illustrates a block diagram 300 that shows a second exemplary embodiment 302, in which an exemplary test application 304 is installed in the computational device 102 (shown in FIG. 1) by an installer application (such as installer application 104), in accordance with certain embodiments.
The exemplary test application 304 includes a first code path 306 and a second code path 308. In the first code path 306, an exemplary port 23456 is in use (shown via reference numeral 310), and in the second code path 308 the exemplary port 23456 is not in use (shown via reference numeral 312).
The exemplary test application 304 is to be installed and tested by the installer application 104 (shown via reference numeral 314). The installer application 104 blocks (reference numeral 316) port 23456 and then binds (reference numeral 318) a socket to port 23456 to install the exemplary test application 304. After installation of the exemplary test application (reference numeral 320), port 23456 is bound to a socket corresponding to the test application 304 (shown via reference numeral 324), and other ports (shown via reference numerals 322, 326) may not be blocked.
The installer application 104 or some other application may be used to test the functions (e.g., the first code path 206) of the exemplary test application 304 (shown via reference numeral 328). Subsequently, in certain embodiments the installer application 104 may unblock port 23456 by closing the socket to port 23456 (shown via reference numeral 330). The state of the ports after port 23456 has been unblocked is shown via reference numerals 332, 334, 336, 338. The installer application 104 tests additional functions (e.g., the second code path 308) of the exemplary test application 308 (shown via reference numeral 340).
Therefore, FIG. 3 illustrates certain embodiments in which a selected port that is to be used by an exemplary test application is blocked prior to installing the exemplary test application. After installing the exemplary test application, various operations on ports and sockets may be performed via the interface 110 to test additional functions in the exemplary test application 304, without reinstalling the exemplary test application 304.
FIG. 4 illustrates a block diagram that shows first operations 400, in accordance with certain embodiments. In certain embodiments, the first operations 400 may be performed by the installer application 104 implemented in the computational device 102 shown in FIG. 1.
Control starts at block 402, in which the installer application 104 starts executing. The installer application 104 receives (at block 404) a command to install a test application 108, wherein the test application 108 may use a selected port in certain code paths executed by the test application 108. The installer application 104 initiates (at block 406) a query (e.g., for a user via the interface 110) to determine the identity of the selected port and to determine whether the selected port is to be blocked.
The query to the user via the interface 110 may determine (at block 408) whether the selected port is to be blocked. If a determination is made at block 408 that the selected port is to be blocked, then the installer application 104 blocks (at block 410) the selected port. The installer application 104 binds (at block 412) a socket to the selected port, then installs the test application 108, and then tests code paths in the test application 108. If a determination is made at block 408 that the selected port is not to be blocked, then control returns to block 404.
From block 412, control proceeds to block 414 in which the certain ports and sockets may be released. The installer application 104 binds (at block 416) additional ports to sockets (based on user input via the user interface 110) and tests additional code paths in the installed test application 108. No reinstallation of the test application 108 is needed while testing the additional code paths. Subsequently, all bound ports and sockets are released (at block 418) and the installer application 104 stops (at block 420).
FIG. 5 illustrates a block diagram that shows second operations 500, in accordance with certain embodiments. In certain embodiments, the second operations 500 may be performed by the installer application 104 implemented in the computational device 102 shown in FIG. 1.
Control starts at block 502 in which an installer application 104 implemented in a computational device 102 receives a command to install a test application 108 in the computational device 102. The installer application 104 determines (at block 504) whether a selected port of a plurality of ports 106 a . . . 106 n of the computational device 102 is to be blocked prior to installing the test application 108 in the computational device 102.
Control proceeds to block 506, wherein in response to determining that the selected port is to be blocked prior to installing the test application 108 in the computational device 102, the installer application 104 blocks the selected port, installs the test application 108 by binding a socket to the selected port of the plurality of ports 106 a . . . 106 n after blocking the selected port, and tests functions of the test application 108 by executing one or more code paths 120, 122 of the test application 108, in response to installing the test application 108.
Subsequent to the execution of block 506, the selected port is unblocked, i.e., released by closing the socket on the selected port, (at block 508), in response to determining that the selected port is blocked. Functions of the test application 108 are tested (at block 510) by executing the one or more code paths of the test application 108, in response to unblocking the selected port.
Therefore, FIGS. 1-5 illustrate certain embodiments in which prior to installing an application, selected ports that may be needed by the application are blocked. As a result, installation and execution of the application may proceed without error and no reinstallation of the application may be needed.
It is understood, that the interface 110 of the installer application 104 shown in FIG. 1 may be implemented via many different embodiments. FIG. 6 illustrates a block diagram 600 that shows exemplary embodiments 602 of exemplary selection operations, exemplary input operations and exemplary output operations that are provided and received via the interface 110 of the installer application 104 shown in FIG. 1. FIG. 6 also shows various selections that may be made by a user from the exemplary selections provided by the interface 110.
In certain alternative embodiments, if a selected port is already in use prior to installing an application, the interface 110 may be used to request a user to designate an alternate port. In certain embodiments, sockets are bound to ports on an as needed basis as opposed to reinstalling an application. Embodiments provide a mechanism for code developers and code testers to test any product that allows for user defined ports and also provide mechanisms to check for the availability of ports.
Additional Embodiment Details
The described operations may be implemented as a method, apparatus or computer program product using standard programming and/or engineering techniques to produce software, firmware, hardware, or any combination thereof. Accordingly, aspects of the embodiments may take the form of an entirely hardware embodiment, an entirely software embodiment (including firmware, resident software, micro-code, etc.) or an embodiment combining software and hardware aspects that may all generally be referred to herein as a “circuit,” “module” or “system.” Furthermore, aspects of the embodiments may take the form of a computer program product embodied in one or more computer readable medium(s) having computer readable program code embodied there.
Any combination of one or more computer readable medium(s) may be utilized. The computer readable medium may be a computer readable signal medium or a computer readable storage medium. A computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any suitable combination of the foregoing. More specific examples (a non-exhaustive list) of the computer readable storage medium would include the following: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the context of this document, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
A computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated signal may take any of a variety of forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A computer readable signal medium may be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
Computer program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java*, Smalltalk, C++ or the like and conventional procedural programming languages, such as the “C” programming language or similar programming languages. The program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server. In the latter scenario, the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider). * Java is a trademark or registered trademark of Sun Microsystems, Inc.
Aspects of the present invention are described below with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems) and computer program products according to embodiments of the invention. It will be understood that each block of the flowchart illustrations and/or block diagrams, and combinations of blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer readable medium that can direct a computer, other programmable data processing apparatus, or other devices to function in a particular manner, such that the instructions stored in the computer readable medium produce an article of manufacture including instructions which implement the function/act specified in the flowchart and/or block diagram block or blocks.
The computer program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other devices to cause a series of operational steps to be performed on the computer, other programmable apparatus or other devices to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide processes for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
FIG. 7 illustrates a block diagram that shows certain elements that may be included in the system 700 in accordance with certain embodiments. The system 700 may comprise the computational device 102 and may include a circuitry 702 that may in certain embodiments include at least a processor 704. The system 700 may also include a memory 706 (e.g., a volatile memory device), and storage 708. The storage 708 may include a non-volatile memory device (e.g., EEPROM, ROM, PROM, RAM, DRAM, SRAM, flash, firmware, programmable logic, etc.), magnetic disk drive, optical disk drive, tape drive, etc. The storage 708 may comprise an internal storage device, an attached storage device and/or a network accessible storage device. The system 700 may include a program logic 710 including code 712 that may be loaded into the memory 706 and executed by the processor 704 or circuitry 702. In certain embodiments, the program logic 710 including code 712 may be stored in the storage 708. In certain other embodiments, the program logic 710 may be implemented in the circuitry 702. Therefore, while FIG. 7 shows the program logic 710 separately from the other elements, the program logic 710 may be implemented in the memory 706 and/or the circuitry 702.
Certain embodiments may be directed to a method for deploying computing instruction by a person or automated processing integrating computer-readable code into a computing system, wherein the code in combination with the computing system is enabled to perform the operations of the described embodiments.
The terms “an embodiment”, “embodiment”, “embodiments”, “the embodiment”, “the embodiments”, “one or more embodiments”, “some embodiments”, and “one embodiment” mean “one or more (but not all) embodiments of the present invention(s)” unless expressly specified otherwise.
The terms “including”, “comprising”, “having” and variations thereof mean “including but not limited to”, unless expressly specified otherwise.
The enumerated listing of items does not imply that any or all of the items are mutually exclusive, unless expressly specified otherwise.
The terms “a”, “an” and “the” mean “one or more”, unless expressly specified otherwise.
Devices that are in communication with each other need not be in continuous communication with each other, unless expressly specified otherwise. In addition, devices that are in communication with each other may communicate directly or indirectly through one or more intermediaries.
A description of an embodiment with several components in communication with each other does not imply that all such components are required. On the contrary a variety of optional components are described to illustrate the wide variety of possible embodiments of the present invention.
Further, although process steps, method steps, algorithms or the like may be described in a sequential order, such processes, methods and algorithms may be configured to work in alternate orders. In other words, any sequence or order of steps that may be described does not necessarily indicate a requirement that the steps be performed in that order. The steps of processes described herein may be performed in any order practical. Further, some steps may be performed simultaneously.
When a single device or article is described herein, it will be readily apparent that more than one device/article (whether or not they cooperate) may be used in place of a single device/article. Similarly, where more than one device or article is described herein (whether or not they cooperate), it will be readily apparent that a single device/article may be used in place of the more than one device or article or a different number of devices/articles may be used instead of the shown number of devices or programs. The functionality and/or the features of a device may be alternatively embodied by one or more other devices which are not explicitly described as having such functionality/features. Thus, other embodiments of the present invention need not include the device itself.
At least certain operations that may have been illustrated in the figures show certain events occurring in a certain order. In alternative embodiments, certain operations may be performed in a different order, modified or removed. Moreover, steps may be added to the above described logic and still conform to the described embodiments. Further, operations described herein may occur sequentially or certain operations may be processed in parallel. Yet further, operations may be performed by a single processing unit or by distributed processing units.
The foregoing description of various embodiments of the invention has been presented for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise form disclosed. Many modifications and variations are possible in light of the above teaching. It is intended that the scope of the invention be limited not by this detailed description, but rather by the claims appended hereto. The above specification, examples and data provide a complete description of the manufacture and use of the composition of the invention. Since many embodiments of the invention can be made without departing from the spirit and scope of the invention, the invention resides in the claims hereinafter appended.

Claims (20)

What is claimed is:
1. A method, comprising:
receiving, by an installer application implemented in a computational device, a command to install a test application in the computational device, wherein the test application includes a first code path and a second code path that are to be tested, and wherein a selected port of a plurality of ports is used in first code path and not used in the second code path;
blocking, by the installer application, the selected port, in response to receiving the command to install the test application;
installing, by the installer application, the test application by binding a socket to the selected port of the plurality of ports, in response to blocking the selected port;
testing first functions of the test application by executing the first code path that uses the selected port, in response to installing the test application;
unblocking, by the installer application, the selected port, in response to testing the first functions; and
testing second functions of the test application by executing the second code path that does not use the selected port.
2. The method of claim 1, wherein the installer application provides an interface with selections to:
block one or more ports of the plurality of ports;
list ports that are blocked in the plurality of ports;
bind one or more sockets to corresponding ports of the plurality of ports; and
close the one or more sockets to the corresponding ports of the plurality of ports.
3. The method of claim 1, wherein the plurality of ports are a plurality of TCP/IP ports and wherein the socket is reservation on a TCP/IP port of the plurality of TCP/IP ports.
4. The method of claim 1, wherein the testing of the first functions of the test application occurs prior to the unblocking of the selected port, and wherein the testing of the second functions of the test application occurs subsequent to the unblocking of the selected port.
5. The method of claim 4, wherein all bound ports and sockets are released, subsequent to the testing of the second functions.
6. A system, comprising:
a memory; and
a processor coupled to the memory, wherein the processor performs operations, the operations comprising:
receiving, by an installer application, a command to install a test application, wherein the test application includes a first code path and a second code path that are to be tested, and wherein a selected port of a plurality of ports is used in first code path and not used in the second code path;
blocking, by the installer application, the selected port, in response to receiving the command to install the test application;
installing, by the installer application, the test application by binding a socket to the selected port of the plurality of ports, in response to blocking the selected port;
testing first functions of the test application by executing the first code path that uses the selected port, in response to installing the test application;
unblocking, by the installer application, the selected port, in response to testing the first functions; and
testing second functions of the test application by executing the second code path that does not use the selected port.
7. The system of claim 6, wherein the installer application provides an interface with selections to:
block one or more ports of the plurality of ports;
list ports that are blocked in the plurality of ports;
bind one or more sockets to corresponding ports of the plurality of ports; and
close the one or more sockets to the corresponding ports of the plurality of ports.
8. The system of claim 6, wherein the plurality of ports are a plurality of TCP/IP ports and wherein the socket is reservation on a TCP/IP port of the plurality of TCP/IP ports.
9. The system of claim 6, wherein the testing of the first functions of the test application occurs prior to the unblocking of the selected port, and wherein the testing of the second functions of the test application occurs subsequent to the unblocking of the selected port.
10. The system of claim 9, wherein all bound ports and sockets are released, subsequent to the testing of the second functions.
11. A computer program product, the computer program product comprising:
a computer readable storage device having computer readable program code embodied therewith, the computer readable program code configured to perform operations, the operations comprising:
receiving, by an installer application, a command to install a test application, wherein the test application includes a first code path and a second code path that are to be tested, and wherein a selected port of a plurality of ports is used in first code path and not used in the second code path;
blocking, by the installer application, the selected port, in response to receiving the command to install the test application;
installing, by the installer application, the test application by binding a socket to the selected port of the plurality of ports, in response to blocking the selected port;
testing first functions of the test application by executing the first code path that uses the selected port, in response to installing the test application;
unblocking, by the installer application, the selected port, in response to testing the first functions; and
testing second functions of the test application by executing the second code path that does not use the selected port.
12. The computer program product of claim 11, wherein the installer application provides an interface with selections to:
block one or more ports of the plurality of ports;
list ports that are blocked in the plurality of ports;
bind one or more sockets to corresponding ports of the plurality of ports; and
close the one or more sockets to the corresponding ports of the plurality of ports.
13. The computer program product of claim 11, wherein the plurality of ports are a plurality of TCP/IP ports and wherein the socket is reservation on a TCP/IP port of the plurality of TCP/IP ports.
14. The computer program product of claim 11, wherein the testing of the first functions of the test application occurs prior to the unblocking of the selected port, and wherein the testing of the second functions of the test application occurs subsequent to the unblocking of the selected port.
15. The computer program product of claim 14, wherein all bound ports and sockets are released, subsequent to the testing of the second functions.
16. A method for deploying computing infrastructure, comprising integrating computer-readable code into a computational device, the computer-readable code in combination with the computational device performs operations, the operations comprising:
receiving, by an installer application implemented in a computational device, a command to install a test application in the computational device, wherein the test application includes a first code path and a second code path that are to be tested, and wherein a selected port of a plurality of ports is used in first code path and not used in the second code path;
blocking, by the installer application, the selected port, in response to receiving the command to install the test application;
installing, by the installer application, the test application by binding a socket to the selected port of the plurality of ports, in response to blocking the selected port;
testing first functions of the test application by executing the first code path that uses the selected port, in response to installing the test application;
unblocking, by the installer application, the selected port, in response to testing the first functions; and
testing second functions of the test application by executing the second code path that does not use the selected port.
17. The method for deploying computing infrastructure of claim 16, wherein the installer application provides an interface with selections to:
block one or more ports of the plurality of ports;
list ports that are blocked in the plurality of ports;
bind one or more sockets to corresponding ports of the plurality of ports; and
close the one or more sockets to the corresponding ports of the plurality of ports.
18. The method for deploying computing infrastructure of claim 16, wherein the plurality of ports are a plurality of TCP/IP ports and wherein the socket is reservation on a TCP/IP port of the plurality of TCP/IP ports.
19. The method for deploying computing infrastructure of claim 16, wherein the testing of the first functions of the test application occurs prior to the unblocking of the selected port, and wherein the testing of the second functions of the test application occurs subsequent to the unblocking of the selected port.
20. The method for deploying computing infrastructure of claim 19, wherein all bound ports and sockets are released, subsequent to the testing of the second functions.
US12/700,539 2010-02-04 2010-02-04 Blocking a selected port prior to installation of an application Expired - Fee Related US8478847B2 (en)

Priority Applications (4)

Application Number Priority Date Filing Date Title
US12/700,539 US8478847B2 (en) 2010-02-04 2010-02-04 Blocking a selected port prior to installation of an application
US13/895,248 US9092574B2 (en) 2010-02-04 2013-05-15 Blocking a selected port prior to installation of an application
US14/731,725 US9875176B2 (en) 2010-02-04 2015-06-05 Blocking a selected port prior to installation of an application
US15/837,574 US10394702B2 (en) 2010-02-04 2017-12-11 Blocking a selected port prior to installation of an application

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US12/700,539 US8478847B2 (en) 2010-02-04 2010-02-04 Blocking a selected port prior to installation of an application

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US13/895,248 Continuation US9092574B2 (en) 2010-02-04 2013-05-15 Blocking a selected port prior to installation of an application

Publications (2)

Publication Number Publication Date
US20110191450A1 US20110191450A1 (en) 2011-08-04
US8478847B2 true US8478847B2 (en) 2013-07-02

Family

ID=44342586

Family Applications (4)

Application Number Title Priority Date Filing Date
US12/700,539 Expired - Fee Related US8478847B2 (en) 2010-02-04 2010-02-04 Blocking a selected port prior to installation of an application
US13/895,248 Expired - Fee Related US9092574B2 (en) 2010-02-04 2013-05-15 Blocking a selected port prior to installation of an application
US14/731,725 Active 2030-10-10 US9875176B2 (en) 2010-02-04 2015-06-05 Blocking a selected port prior to installation of an application
US15/837,574 Expired - Fee Related US10394702B2 (en) 2010-02-04 2017-12-11 Blocking a selected port prior to installation of an application

Family Applications After (3)

Application Number Title Priority Date Filing Date
US13/895,248 Expired - Fee Related US9092574B2 (en) 2010-02-04 2013-05-15 Blocking a selected port prior to installation of an application
US14/731,725 Active 2030-10-10 US9875176B2 (en) 2010-02-04 2015-06-05 Blocking a selected port prior to installation of an application
US15/837,574 Expired - Fee Related US10394702B2 (en) 2010-02-04 2017-12-11 Blocking a selected port prior to installation of an application

Country Status (1)

Country Link
US (4) US8478847B2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10394702B2 (en) 2010-02-04 2019-08-27 International Business Machines Corporation Blocking a selected port prior to installation of an application

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105007195B (en) * 2015-07-15 2018-01-26 广东欧珀移动通信有限公司 The binding method and device of a kind of port
CN106775447B (en) * 2016-11-14 2020-03-27 成都广达新网科技股份有限公司 Asynchronous non-blocking based disk file read-write rate control method
CN112994986B (en) * 2021-04-27 2021-10-22 四川新网银行股份有限公司 Configurable automatic port network state detection system and detection method

Citations (16)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6041356A (en) 1997-03-31 2000-03-21 Intel Corporation Method and apparatus for detecting network traffic and initiating a dial-up connection using separate upstream and downstream devices
US6266681B1 (en) * 1997-04-08 2001-07-24 Network Commerce Inc. Method and system for inserting code to conditionally incorporate a user interface component in an HTML document
US6453371B1 (en) 1999-04-23 2002-09-17 Palm, Inc. Method, apparatus, and system for selection of a port for data exchange
US6473406B1 (en) * 1997-07-31 2002-10-29 Cisco Technology, Inc. Method and apparatus for transparently proxying a connection
US20040078692A1 (en) * 2002-03-05 2004-04-22 Jackson Walter A. Test configuration method and system
US20050044227A1 (en) * 2003-08-07 2005-02-24 International Business Machines Corporation Reservation of TCP/UDP ports using UID, GID or process name
US6963905B1 (en) * 1997-09-29 2005-11-08 Emc Corporation System and method including a communication interface for transferring information between at least two processes
US20060075089A1 (en) * 2004-09-14 2006-04-06 International Business Machines Corporation System, method and program to troubleshoot a distributed computer system or determine application data flows
US7237259B2 (en) 2002-11-07 2007-06-26 International Business Machines Corporation Fault reducing firewall system
US20070162909A1 (en) * 2006-01-11 2007-07-12 Microsoft Corporation Reserving resources in an operating system
US7296292B2 (en) 2000-12-15 2007-11-13 International Business Machines Corporation Method and apparatus in an application framework system for providing a port and network hardware resource firewall for distributed applications
US20070276950A1 (en) 2006-05-26 2007-11-29 Rajesh Dadhia Firewall For Dynamically Activated Resources
US7334226B2 (en) 2003-10-30 2008-02-19 International Business Machines Corporation Autonomic auto-configuration using prior installation configuration relationships
US7382802B2 (en) 2003-12-23 2008-06-03 Electronics And Telecommunications Research Institute Device for supporting NICs and TOEs under same protocol family of socket interface using IP checking mechanism
US20080222266A1 (en) 2004-01-22 2008-09-11 International Business Machines Corporation Redirecting client connection requests among sockets providing a same service
US20100268775A1 (en) * 2009-04-15 2010-10-21 Klaus Franz Doppler Method, apparatus and computer program product for providing an indication of device to device communication availability

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7904940B1 (en) * 2004-11-12 2011-03-08 Symantec Corporation Automated environmental policy awareness
US20070083788A1 (en) * 2005-10-06 2007-04-12 General Instrument Corporation Method and apparatus for testing for open ports of an endpoint device in a packet network
US8423483B2 (en) * 2008-05-16 2013-04-16 Carnegie Mellon University User-controllable learning of policies
US8478847B2 (en) 2010-02-04 2013-07-02 International Business Machines Corporation Blocking a selected port prior to installation of an application

Patent Citations (16)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6041356A (en) 1997-03-31 2000-03-21 Intel Corporation Method and apparatus for detecting network traffic and initiating a dial-up connection using separate upstream and downstream devices
US6266681B1 (en) * 1997-04-08 2001-07-24 Network Commerce Inc. Method and system for inserting code to conditionally incorporate a user interface component in an HTML document
US6473406B1 (en) * 1997-07-31 2002-10-29 Cisco Technology, Inc. Method and apparatus for transparently proxying a connection
US6963905B1 (en) * 1997-09-29 2005-11-08 Emc Corporation System and method including a communication interface for transferring information between at least two processes
US6453371B1 (en) 1999-04-23 2002-09-17 Palm, Inc. Method, apparatus, and system for selection of a port for data exchange
US7296292B2 (en) 2000-12-15 2007-11-13 International Business Machines Corporation Method and apparatus in an application framework system for providing a port and network hardware resource firewall for distributed applications
US20040078692A1 (en) * 2002-03-05 2004-04-22 Jackson Walter A. Test configuration method and system
US7237259B2 (en) 2002-11-07 2007-06-26 International Business Machines Corporation Fault reducing firewall system
US20050044227A1 (en) * 2003-08-07 2005-02-24 International Business Machines Corporation Reservation of TCP/UDP ports using UID, GID or process name
US7334226B2 (en) 2003-10-30 2008-02-19 International Business Machines Corporation Autonomic auto-configuration using prior installation configuration relationships
US7382802B2 (en) 2003-12-23 2008-06-03 Electronics And Telecommunications Research Institute Device for supporting NICs and TOEs under same protocol family of socket interface using IP checking mechanism
US20080222266A1 (en) 2004-01-22 2008-09-11 International Business Machines Corporation Redirecting client connection requests among sockets providing a same service
US20060075089A1 (en) * 2004-09-14 2006-04-06 International Business Machines Corporation System, method and program to troubleshoot a distributed computer system or determine application data flows
US20070162909A1 (en) * 2006-01-11 2007-07-12 Microsoft Corporation Reserving resources in an operating system
US20070276950A1 (en) 2006-05-26 2007-11-29 Rajesh Dadhia Firewall For Dynamically Activated Resources
US20100268775A1 (en) * 2009-04-15 2010-10-21 Klaus Franz Doppler Method, apparatus and computer program product for providing an indication of device to device communication availability

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10394702B2 (en) 2010-02-04 2019-08-27 International Business Machines Corporation Blocking a selected port prior to installation of an application

Also Published As

Publication number Publication date
US20130254594A1 (en) 2013-09-26
US20150269063A1 (en) 2015-09-24
US9092574B2 (en) 2015-07-28
US9875176B2 (en) 2018-01-23
US20110191450A1 (en) 2011-08-04
US10394702B2 (en) 2019-08-27
US20180101469A1 (en) 2018-04-12

Similar Documents

Publication Publication Date Title
US10394702B2 (en) Blocking a selected port prior to installation of an application
US7287190B2 (en) Simultaneous execution of test suites on different platforms
KR101410099B1 (en) Function Test Apparatus based on Unit Test Cases Reusing and Function Test Method thereof
US10956311B2 (en) White box code concurrency testing for transaction processing
US8533682B2 (en) Amplification of dynamic checks through concurrency fuzzing
EP1387304A1 (en) Method for functional verification of an integrated circuit model for building a verification platform, emulator equipment and verification platform
CN107832207A (en) Interface performance test method, apparatus, storage medium and computer equipment
US20170048008A1 (en) Method and apparatus for verification of network service in network function virtualization environment
US11436131B2 (en) Systems and methods for software testing using a disposable code
CN111290941A (en) Method and device for testing multiple interfaces, computing equipment and medium
CN113268684A (en) Data processing method, device, terminal equipment and storage medium
US20050114836A1 (en) Block box testing in multi-tier application environments
Xu et al. Concolic execution on small-size binaries: Challenges and empirical study
KR20100019332A (en) Methods and systems for on-the-fly chip verification
US9064042B2 (en) Instrumenting computer program code by merging template and target code methods
US9733928B2 (en) Dynamic setup of development environments
CN109960658A (en) Application programming interface test method, device, electronic equipment and storage medium
CN113778798A (en) Server control method, server control device, electronic device, and storage medium
US10169181B2 (en) Efficient validation of transactional memory in a computer processor
US20150071070A1 (en) Injecting congestion in a link between adaptors in a network
US9577884B2 (en) Enterprise quality assurance and lab management tool
Wu et al. Framework for assessing cloud trustworthiness
CN116306409B (en) Chip verification method, device, equipment and storage medium
US11520866B2 (en) Controlling processor instruction execution
Muhammad et al. Modelling embedded systems with AADL: a practical study

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:BROOKS, MATTHEW EVERETT;REEL/FRAME:024073/0809

Effective date: 20100129

REMI Maintenance fee reminder mailed
LAPS Lapse for failure to pay maintenance fees
STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20170702