Methods and systems for testing a software program

Information

  • Patent Application
  • 20070261029
  • Publication Number
    20070261029
  • Date Filed
    August 17, 2006
    18 years ago
  • Date Published
    November 08, 2007
    17 years ago
Abstract
Methods and systems for testing a software program are provided. The methods include receiving a textual input for testing at least one static type used by the software program. The textual input of an embodiment is pre-linked to the at least one static type. The method includes creating a dynamic type based on the textual input in a dynamically typed language. The dynamic type is populated based on a predefined set of test vectors and is then passed on to the software program. The software program is executed using the dynamic type. Executing the software program by using the dynamic type invokes the at least one static type used by the software program.
Description

BRIEF DESCRIPTION OF DRAWINGS

A more complete appreciation of the present invention is provided by reference to the following detailed description when considered in conjunction with the accompanying drawings in which reference symbols indicate the same or similar components, wherein:



FIG. 1 is a flowchart for testing a software program, in accordance with an embodiment.



FIG. 2 is a flowchart for testing a software program, in accordance with another embodiment.



FIG. 3 is a block diagram showing a device for testing a software program, in accordance with an embodiment of the invention.





DETAILED DESCRIPTION OF DRAWINGS

Various embodiments described below provide methods and systems of testing a software program using a dynamically typed language. To test a software program, types in the software program are tested and the constraints for each type are applied. In addition to testing types in the software program, algorithms used in the software program may also be tested. Types that are created before compilation are called static types and the types that are created during the runtime are called dynamic types. The static types are created in statically typed languages. Examples of the statically typed language may include, but are not limited to, C, C++, Java, ML and Haskell. The dynamic types are created in dynamically typed languages. Examples of the dynamically typed language may include, but are not limited to, Python, Ruby, Smalltalk, Perl, and Lisp. Methods of testing a software program using a dynamically typed language in accordance with various embodiments are explained hereinafter.



FIG. 1 is a flowchart for testing a software program, in accordance with an embodiment. The software program is written in a statically typed language. Therefore, the software program uses one or more static types. The software program may be a protocol software program. A protocol software program enables a standard format for data exchange between data processing systems in a communication network. The standard format, for example, may include a predetermined format for error checking, and a method used for compression of data. In an embodiment, the protocol software program is an 802.16 protocol software program, but the embodiment is not so limited.


At 102, a textual input is received for testing the software program using one or more static types. The textual input is received in a dynamically type language. The textual input is pre-linked to one or more static types, such that a static type can be invoked by using a corresponding textual input. The textual input is pre-linked to a static type through an import definition of the static type. This is further explained below in conjunction with FIG. 2.


At 104, a dynamic type is created based on the textual input in the dynamically typed language. The dynamic type language may be a scripting language. Examples of the scripting language may include, but are not limited to, ColdFusion, Hypertext Preprocessor (PHP), Pike, Python, Ruby and scheme. As a result of the creation of the dynamic type based on the textual input, corresponding static type can be directly accessed from the dynamically typed language. The dynamic type is then populated with a predefined set of test vectors and is passed on to the software program.


At 106, the software program is executed using the dynamic type as input. As the dynamic type is created based on the textual input that is pre-linked to a static type, therefore, the static type is invoked when the software program is executed using the dynamic type. The invoking of the static type enables it's testing. As a result, one or more static types are tested without creating an adaptation layer.


As an example of the method described above, a software program is tested by using Python as the dynamically typed language. The software program includes two static types, i.e., static type ‘T1’ and static type ‘T2’. To test these static types a textual input is received in Python. In this example, the textual input is:


TypeToTest=‘T1’;


This textual input is pre-linked to the static type T1 through an import definition of the static type T1, such that this textual input can be used to invoke the static type T1. Further, a dynamic type P is created based on the textual input in the dynamic type language. The dynamic type P is:


P=eval (TypeToTest)( );


Thereafter, the dynamic type P is populated with a predefined set of test vectors and passed on to the software program. The software program is then executed using the dynamic type P. Thereafter, the static type T1 is invoked when the software program is executed.



FIG. 2 is a flowchart for testing a software program, in accordance with another embodiment. At 202, an import definition of one or more static types used by the software program is created. The import definition of an embodiment is created in the dynamically typed language. The import definition created on the dynamic type language provides a reference/pointer to the at least one static type. The import definition is pre-linked to a textual input by predefining textual input for the import definition in the system. The import definition is created by a Simplified Wrapper and Interface Generator (SWIG). The SWIG creates bindings (import definitions) on a scripting language from a software program written in static typed languages. These bindings can then be used from the scripting language to use the software program written in static typed languages. At 204, a textual input is received. As the textual input is pre-linked to the import definition, it can be used to access one or more static type through the import definition.


Further, a dynamic type is created based on the textual input at 206. At 208, the software program is executed using the dynamic type. The dynamic type is created based on the textual input that is pre-linked to the import definition. Further, the import definition provides a reference or pointer to the at least one static type. Therefore, executing the software program by using the dynamic type invokes one or more static types and enables testing of one or more static types.



FIG. 3 is a block diagram showing components of a device 300 for testing a software program, in accordance with an embodiment. Device 300 for testing a software program includes may be a test tool, but is not limited to a test tool. Device 300 includes an input receiver 302 and a type generator 304. Input receiver 302 receives a textual input for testing the software program using the at least one static type. This has been explained in detail in conjunction with FIG. 1 and FIG. 2 above. The textual input is pre-linked to one or more static types. The textual input may be entered in a markup language. In an embodiment the markup language is Extensible Markup Language (XML) but is not limited to XML. Examples of the markup language other than XML, may include, but are not limited to, Extensible Binary Meta Language (EBML), Generalized Markup language (GML), Standard Generalized Markup Language (SGML), and (Hyper Text Markup Language) HTML. The textual input may also be entered in a text file or an excel worksheet. Thereafter, a dynamic type is created based on the textual input in a dynamically typed language by type generator 304. This has been explained in conjunction with FIG. 1.


In an embodiment, device 300 includes a binder 306. In various embodiments, the SWIG includes binder 306. Binder 306 creates an import definition of the at least one static type on the dynamically typed language. Further, the textual input received by input receiver 302 is pre-linked to the import definition by binder 306. As a result of which, the textual input can be used to invoke the at least one static type and test them. The input receiver 302, type generator 304, and/or binder 306 of device 300 can be coupled and/or connected in any of a variety of combinations as appropriate to a system that includes device 300, and are thus not limited to the configuration shown in FIG. 3.


Various embodiments provide methods and systems for testing software programs without creating adaptation layer for each type used by it. Further, the various embodiments provide methods and systems for testing 802.16 protocol software program.

Claims
  • 1. A method of testing a software program, the method comprising: a. receiving a textual input for testing the software program using at least one static type used by the software program, the textual input being pre-linked to the at least one static type;b. creating a dynamic type based on the textual input in a dynamically typed language; andc. executing the software program using the dynamic type as input, wherein executing the software program using the dynamic type invokes the at least one static type used by the software program.
  • 2. The method of claim 1, further comprising creating an import definition of the at least one static type used by the software program, wherein the import definition is created in the dynamically typed language.
  • 3. The method of claim 2, wherein the import definition is pre-linked to the textual input.
  • 4. The method of claim 2, wherein the import definition is created by a Simplified Wrapper and Interface Generator (SWIG).
  • 5. The method of claim 1, wherein the software program is written in a statically typed language.
  • 6. The method of claim 1, wherein the software program is a protocol software program.
  • 7. The method of claim 6, wherein the protocol software program is an 802.16 protocol software program.
  • 8. A device for testing a software program, the device comprising; a. an input receiver, the input receiver configured to receive a textual input for testing the at least one static type used by the software program, wherein the textual input is pre-linked to the at least one static type; andb. a type generator, the type generator configured to create a dynamic type in a dynamically typed language based on the textual input.
  • 9. The device of claim 8 further comprising a binder, the binder configured to create an import definition of the at least one static type on the dynamically typed language, the binder linking a textual input to a corresponding import definition.
  • 10. The device of claim 8, wherein the dynamic type is executed to invoke the at least one static type.
  • 11. The device of claim 8, wherein the textual input is made on an Extensible Markup Language (XML).
Priority Claims (1)
Number Date Country Kind
695/MUM/2006 May 2006 IN national