KR20040050463A - Appratus and Method for Enterprise JavaBean Component Testing - Google Patents

Appratus and Method for Enterprise JavaBean Component Testing Download PDF

Info

Publication number
KR20040050463A
KR20040050463A KR1020020078307A KR20020078307A KR20040050463A KR 20040050463 A KR20040050463 A KR 20040050463A KR 1020020078307 A KR1020020078307 A KR 1020020078307A KR 20020078307 A KR20020078307 A KR 20020078307A KR 20040050463 A KR20040050463 A KR 20040050463A
Authority
KR
South Korea
Prior art keywords
test
class
testing
xml
data
Prior art date
Application number
KR1020020078307A
Other languages
Korean (ko)
Other versions
KR100501412B1 (en
Inventor
이문수
양영종
박창순
Original Assignee
한국전자통신연구원
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 한국전자통신연구원 filed Critical 한국전자통신연구원
Priority to KR10-2002-0078307A priority Critical patent/KR100501412B1/en
Publication of KR20040050463A publication Critical patent/KR20040050463A/en
Application granted granted Critical
Publication of KR100501412B1 publication Critical patent/KR100501412B1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/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
    • G06F11/3672Test management
    • G06F11/3684Test management for test design, e.g. generating new test cases
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3688Test management for test execution, e.g. scheduling of test suites
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3696Methods or tools to render software testable
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/10Text processing
    • G06F40/12Use of codes for handling textual entities
    • G06F40/14Tree-structured documents

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Quality & Reliability (AREA)
  • Computer Hardware Design (AREA)
  • Health & Medical Sciences (AREA)
  • Artificial Intelligence (AREA)
  • Audiology, Speech & Language Pathology (AREA)
  • Computational Linguistics (AREA)
  • General Health & Medical Sciences (AREA)
  • Debugging And Monitoring (AREA)

Abstract

PURPOSE: A device and a method for testing an EJB(Enterprise Java Bean) component are provided to automatically verify that a realized software component satisfies the required particulars, and reduce the repeated testing processes through reuse in case that a developer develops a server side component. CONSTITUTION: A class analysis module(210) analyzes an inputted class(100) by using a reflection API(Application Programming Interface) supported on the Java and extracts the information for the class. An information storage(230) stores the information for the extracted component class. An XML(eXtensible Markup Language) loader module(220) generates a test case of the testing class as an XML file form by receiving the class information stored in the information storage. A test client generating module(240) generates a test client(260) by using an XML document generated from the XML loader module. A test data generating module(250) generates the test data by using the XML document. A testing server module(270) performs a test by dynamically instancing the test client and the test data to the XML document and the test client object through the Java reflection.

Description

엔터프라이즈 자바 빈 컴포넌트 테스팅 장치 및 그 방법{ Appratus and Method for Enterprise JavaBean Component Testing}Apparatus and Method for Enterprise JavaBean Component Testing}

본 발명은 인터넷을 통하여 서버측에 설치되어 있는 엔터프라이즈 자바 빈즈 컴포넌트를 위한 그레이 박스(Grey Box) 소프트웨어 테스팅 장치 및 그 방법에 관한 것으로, 상세하게는 대상이 되는 컴포넌트를 실제 운용하고자 하는 서버측에 설치된 상태에서 테스팅을 시행하고, 대상 컴포넌트를 시험하기 위해 테스트 케이스와 테스트 데이터를 자동 생성하는 것으로, 이를 쉽게 테스팅하기 위한 테스트 클라이언트와 테스팅 서버장치에 관한 것이다.The present invention relates to a Gray Box software testing apparatus and method for an Enterprise Java Beans component installed on a server side through the Internet, and more particularly, to a server side on which a target component is to be actually operated. It is a test client and a testing server device for easily testing test conditions and automatic generation of test cases and test data in order to perform testing in a state and to test a target component.

소프트웨어 테스팅은 프로그램내의 에러나 결함을 발견하기 위해 주어진 요구사항에 맞게 구현이 되었는지 검증하는 것으로, 소프트웨어를 테스팅하기 위한 일반적인 구조는 먼저 테스팅하고자 하는 대상 언어를 선정하고, 선정된 언어를 위한 파서를 구현한 후 이로부터 분석정보를 추출하게 되며, 추출된 분석정보는 테스팅에 필요한 테스트 케이스와 테스트 데이터를 생성하는데 주로 사용된다.Software testing verifies that a program has been implemented in accordance with a given requirement to detect errors or defects in a program. The general structure for testing software is to first select the target language to be tested and then implement a parser for the selected language. After that, the analysis information is extracted from it, and the extracted analysis information is mainly used to generate test cases and test data necessary for testing.

그러나 간단한 프로그램 내에서도 수많은 경로가 있을 수 있고 프로그램의 크기가 커지게 되면 기하 급수적으로 증가하게 된다. 따라서 실제로는 완벽한 소프트웨어를 구현하는 것은 거의 불가능하기 때문에 어느 정도의 테스팅 한계와 효율을 감안하여 소프트웨어 테스팅이 이루어져야 한다.However, there can be numerous paths within a simple program, and as the program grows in size, it grows exponentially. As a result, it is almost impossible to implement complete software, so software testing should be done with some testing limitations and efficiency.

소프트웨어 테스팅은 일반적으로 추상화 수준에 따라 단위 테스팅(Unit Testing), 통합 테스팅(Integration Testing), 시스템 테스팅(System Testing) 및인증 테스팅(Acceptance Testing)으로 나눌 수 있다.Software testing is generally divided into unit testing, integration testing, system testing, and acceptance testing, depending on the level of abstraction.

단위 테스팅은 모듈 테스팅이라고 하며 타 모듈과 관계없이 단지 대상이 되는 모듈만 독립적으로 시험하는 것으로, 이를 위해서는 테스트 하네스(harness)가 필요하다.Unit testing is called module testing, and independently tests only the target module regardless of other modules. This requires a test harness.

통합 테스팅은 모듈 사이의 결합 관계와 상호 작용을 시험한다. 시스템 테스팅은 전체 시스템에 요구되는 모듈이 완전하게 갖추어진 상태에서 그 시스템 소프트웨어를 시험하는 것이고 마지막 인정 테스팅은 완료 된 소프트웨어 시스템을 사용자 관점에서 고객의 만족 여부를 확인하는 것이다.Integration testing examines the binding relationships and interactions between modules. System testing is to test the system software with the modules required for the whole system fully equipped, and final acceptance testing is to confirm customer satisfaction from the user's point of view of the completed software system.

소프트웨어 테스팅 기법 측면에서 보면 크게 블랙박스(Black-box)와 화이트 박스(White-box)로 나눌 수 있다.In terms of software testing techniques, it can be largely divided into black-box and white-box.

상기 블랙박스 테스팅은 소프트웨어의 내부 동작에 대한 고려는 하지 않고 단지 소프트웨어의 상세 명세서나 요구사항 분석 명세서를 이용하여 입출력 데이터를 중심으로 이루어지는 것으로, 행동 테스팅(behavioral testing)이라고 한다.The black box testing is based on the input and output data using the detailed specification of the software or the requirements analysis specification without considering the internal operation of the software, and is called behavioral testing.

그리고 블랙박스 테스팅에는 소프트웨어의 기능을 테스팅하는 기능 테스팅과 경계 값을 이용한 바운드리 밸류(Boundary-value) 테스팅을 들 수 있다.In addition, black box testing includes functional testing for testing software functions and boundary-value testing using boundary values.

상기 화이트박스 테스팅은 다른 용어로 구조적 테스팅(Structural Testing)이라고 하며 소프트웨어 내부가 만족스럽게 수행되는지 시험하는 것이다. 화이트박스 테스팅에는 제어흐름 중심테스팅(Control-flow driven testing), 데이터흐름 중심테스팅(Data-flow driven testing), 변이 테스팅(Mutation Testing), 영역 테스팅(Domain Testing)등이 있다.The white box testing, in other terms, is called structural testing and tests whether the software performs satisfactorily. Whitebox testing includes control-flow driven testing, data-flow driven testing, mutation testing, and domain testing.

그레이박스(Grey-box)테스팅은 블랙박스 테스팅과 화이트박스 테스팅의 중간 형태를 취하고 있다.Gray-box testing takes the form of black box testing and white box testing.

그레이박스 테스팅은 소프트웨어 테스팅 추상화 수준에서 통합 테스팅에 적용되는 소프트웨어 테스팅기법이다. 그 기법은 컴포넌트간의 상호 관계를 컴포넌트 인터페이스를 기반으로 테스팅을 하는 것이다. 즉 컴포넌트 자체는 블랙박스이지만 각각의 입출력 인터페이스는 이미 공개적으로 알려져 있기 때문에 이 인터페이스를 이용하여 테스팅을 하게 된다.Graybox testing is a software testing technique applied to integration testing at the software testing abstraction level. The technique involves testing the interrelationships between components based on their component interfaces. In other words, the component itself is a black box, but each I / O interface is already publicly known, so testing is done using this interface.

다수의 클라이언트에게 웹을 통하여 서비스를 하기 위한 서비스 컴포넌트는 서버측에 설치되어 있다. 그리고 그 컴포넌트는 원격지의 데이터 베이스를 엑세스할 수도 있고 다른 서버의 컴포넌트와 상호 작용을 할 수도 있다. 예를 들어 썬(Sun)에서는 엔터프라이즈 자바 빈(Enterprise JavaBean)으로 컴포넌트 기반의 소프트웨어 개발을 위해 J2EE라고 하는 웹 어플리케이션 서버에 대한 표준 스펙을 발표한 바 있다.A service component for providing services to a plurality of clients via the web is installed on the server side. The component can then access remote databases and interact with components on other servers. For example, Sun has published a standard specification for a web application server called J2EE for developing component-based software with Enterprise JavaBeans.

개발된 컴포넌트는 서버측에 설치 및 운용이 되고 이들 컴포넌트는 독립적으로 실행될 수도 있지만, 주로 데이터 베이스나 다른 컴포넌트들과 상호 정보를 교환하여 운용되기도 한다. 이럴 경우에 개발된 서버 컴포넌트의 명확한 인터페이스 테스팅을 위해서는 서버측에 설치 및 운용 상태에서 테스팅이 이루어져야 한다.The developed components are installed and operated on the server side, and these components can be executed independently, but are often operated by exchanging information with a database or other components. In this case, for clear interface testing of developed server components, testing should be done on the server side.

본 발명과 관련된 기술로는 객체지향 소프트웨어 테스팅에 관련된 기술들을 들 수 있다. 소프트웨어 테스팅에 관련된 기술로 화이트박스 테스팅기법을 적용한 것으로 이전 테스팅에 사용된 프로그램 영역은 다시 테스팅하지 않도록 하기 위한자동 테스팅기법(미국 특허 5758061), 객체지향 소프트웨어 테스트를 위하여 테스트 드라이브와 테스트 케이스를 포함하고 있는 소프트웨어 테스트 프레임을 이용하여 테스팅하는 기법(미국 특허, 6353897)이 있다. 그리고 자바 클래스나 자바 빈(Java Bean)을 동적으로 생성시켜 파일로 분리되어 있는 메타 데이터를 바인딩하는 방법(미국 특허, 6427228)등이 본 기술과 유사하다.Techniques related to the present invention include techniques related to object-oriented software testing. The technology related to software testing is the application of the white box testing technique. The program area used for the previous testing includes an automatic testing technique (US Pat. No. 5758061) to avoid testing again, a test drive and a test case for object-oriented software testing. There is a technique (US Patent, 6353897) for testing using a software test frame. In addition, the method of dynamically generating Java classes or Java Beans and binding metadata separated into files (US Patent, 6427228) is similar to the present technology.

이러한 선행 기술들은 테스팅 대상이 되는 프로그램과 테스팅 프로그램이 같은 머신에서만 초점을 맞추고 서버측에서 이루어지는 소프트웨어 대한 기술을 포함하고 있지 않다. 서버측의 다른 컴포넌트나 자원, 즉 데이터베이스와 같은 자원들과 관련을 가지는 컴포넌트일 경우에 컴포넌트가 제대로 동작하는지를 시험하기는 매우 힘들 뿐만 아니라 많은 수작업과 노력이 요구된다.These prior arts do not include a description of the software being done on the server side, with the program being tested and the testing program focused only on the same machine. In the case of components related to other components or resources on the server side, i.e., resources such as a database, it is not only difficult to test whether the component works properly, but also requires a lot of manual work and effort.

따라서 서버측에서 운용되고 있는 컴포넌트를 보다 쉽게 테스팅할 수 있는 자동화된 테스팅방법이 필요하고, 만약 같은 컴포넌트를 재 시험할 경우에 기존 테스트 케이스를 재사용하여 보다 빠르게 테스팅할 수 있는 방법이 요구된다.Therefore, there is a need for an automated testing method that makes it easier to test components that are running on the server side, and when retesting the same components, there is a need for a method that enables faster testing by reusing existing test cases.

본 발명은 상기한 문제점을 해결하기 위한 것으로, 상세하게는 개발자가 서버측 컴포넌트를 개발했을 경우, 구현된 소프트웨어 컴포넌트가 제대로 요구사항을 만족하는지 자동으로 검증하고, 재차 반복되는 테스팅 과정을 재사용을 통해 줄일 수 있는 엔터프라이즈 자바 빈 컴포넌트 테스팅 장치 및 그 방법을 제공하는데 목적이 있다.The present invention is to solve the above problems, in detail, when a developer develops a server-side component, and automatically verify whether the implemented software component satisfies the requirements, and re-use the repeated testing process again An object of the present invention is to provide an enterprise Java bean component testing apparatus and a method thereof.

상기 목적은 본 발명의 엔터프라이즈 자바 빈 컴포넌트 테스팅 장치는 소프트웨어 테스팅에서 통합 테스팅을 위한 그레이 박스 테스팅장치를 제공함으로써 달성할 수 있는 것으로, 본 발명은 컴포넌트의 컴파일된 형태인 클래스 파일을 테스트하기 위한 장치에 있어서, 자바에서 지원하는 리플렉션(Reflection) API를 이용하여 입력된 클래스를 분석하고 그 클래스에 대한 정보를 추출하는 클래스 분석모듈; 추출된 컴포넌트 클래스에 대한 정보를 저장하기 위한 정보 저장소; 상기 정보 저장소에 저장되어 있는 클래스 정보를 입력받아 테스트하려고 하는 클래스의 테스트 케이스를 XML파일 형태로 생성하는 XML로더모듈; 상기 XML로더모듈에서 생성된 XML문서를 이용하여 테스트 클라이언트를 생성하는 테스트 클라이언트 생성모듈; 상기 XML로더모듈에서 생성된 XML문서를 이용하여 테스트 데이터를 생성하는 테스트 데이터 생성모듈; 및 상기 테스트 클라이언트와 상기 테스트 데이터를 자바 리플렉션을 이용하여 동적으로 XML문서와 상기 테스트 클라이언트 객체를 인스턴스화시켜 테스팅하는 테스팅 서버모듈;을 포함하는 것을 특징으로 한다.The object can be achieved by providing an enterprise Java bean component testing apparatus of the present invention by providing a gray box testing apparatus for integrated testing in software testing, the present invention provides a device for testing a class file that is a compiled form of a component A class analysis module for analyzing an input class using a reflection API supported by Java and extracting information about the class; An information store for storing information about the extracted component class; An XML loader module for generating a test case of a class to be tested by receiving class information stored in the information repository in the form of an XML file; A test client generation module generating a test client using the XML document generated by the XML loader module; A test data generation module for generating test data using the XML document generated by the XML loader module; And a testing server module configured to dynamically instantiate an XML document and the test client object and test the test client and the test data using Java reflection.

도 1은 본 발명의 엔터프라이즈 자바 빈 컴포넌트를 테스팅하기 위한 시스1 is a system for testing the enterprise Java bean component of the present invention.

템 구성도,System Configuration,

도 2는 본 발명의 테스팅 서버의 상세 구성도,2 is a detailed configuration diagram of the testing server of the present invention,

도 3은 본 발명의 XML 로더모듈의 알고리즘 순서도,3 is an algorithm flowchart of an XML loader module of the present invention;

도 4는 본 발명의 XML로더모듈에 의해 생성된 XML파일의 예를 보인 도면,4 is a diagram showing an example of an XML file generated by the XML loader module of the present invention;

도 5는 본 발명의 테스트 데이터 생성모듈에 의해 생성 된 XML 예제 파일,5 is an XML example file generated by the test data generation module of the present invention;

도 6은 본 발명의 테스트 클라이언트 생성모듈에 의해 생성 된 테스트 클라6 is a test client generated by the test client generation module of the present invention.

이언트 예제파일,Client examples,

도 7은 본 발명의 테스팅 서버모듈의 상세 흐름도,7 is a detailed flowchart of the testing server module of the present invention;

도 8은 본 발명의 테스팅 서버모듈의 입력 테스트 데이터와 출력 결과를8 shows the input test data and the output result of the testing server module of the present invention.

XML문서로 표현한 예제파일,Example file expressed as XML document,

* 도면의 주요부분에 대한 부호의 설명 *Explanation of symbols on the main parts of the drawings

200;테스팅서버210;클래스분석모듈200; testing server 210; class analysis module

220;XML로더모듈240;테스트클라이언트 생성모듈220; XML loader module 240; test client generation module

250;테스트테이터 생성모듈270;테스팅 서버모듈250; test data generation module 270; testing server module

이하, 본 발명의 바람직한 실시 예를 첨부된 도면을 참조하여 상세하게 설명한다.Hereinafter, exemplary embodiments of the present invention will be described in detail with reference to the accompanying drawings.

도 1은 본 발명의 엔터프라이즈 자바 빈 컴포넌트를 테스팅하기 위한 시스템 구성도를 도시하고 있다. 도 1은 본 발명에 따른 테스팅 서버(200)가 운용되는 전체 시스템의 환경 예를 설명한 것으로, 사용자는 프로그램을 구현하고 실행하기 위해 컴파일을 하게 된다.1 illustrates a system diagram for testing an enterprise Java bean component of the present invention. 1 illustrates an example of an environment of an entire system in which a testing server 200 according to the present invention is operated, and a user compiles to implement and execute a program.

예를 들어 객체 지향 언어인 자바 언어를 컴파일하게 되면 클래스 파일이생성된다. 만약 엔터프라이즈 자바 빈의 경우에는 빈 클래스, 홈 인터페이스, 원격 인터페이스 및 기타 클래스들로 구성이 된다. 이러한 클래스(100)들은 소스코드를 제외한 바이너리 형태로 서버머신(120)에 설치되며, 테스팅 서버(200)는 서버머신(120)에 설치된 엔터프라이즈 빈을 네트워크를 통하여 다른 모듈과 잘 동작하는지를 검증하게 된다.For example, compiling the Java language, an object-oriented language, creates a class file. In the case of an enterprise Java bean, it consists of a bean class, home interface, remote interface, and other classes. These classes 100 are installed in the server machine 120 in binary form except source code, and the testing server 200 verifies whether the enterprise bean installed in the server machine 120 works well with other modules through the network. .

도 2는 본 발명의 테스팅 서버(200)를 구체적으로 도시한 상세 구성도로서 테스팅하고자 하는 클래스의 정보를 추출하여 자동으로 테스팅하는 흐름을 보이고 있다.FIG. 2 is a detailed diagram illustrating the testing server 200 of the present invention in detail and shows a flow of automatically testing information by extracting information of a class to be tested.

도면을 참조하면, 본 발명의 테스팅 서버(200)는 클래스 분석모듈(210), XML 로더모듈(220), 정보저장소(230), 테스트 클라이언트 생성모듈(240), 테스트 데이터 생성모듈(250) 및 테스팅 서버모듈(270)을 포함한다.Referring to the drawings, the testing server 200 of the present invention is a class analysis module 210, XML loader module 220, information store 230, test client generation module 240, test data generation module 250 and The testing server module 270 is included.

본 발명의 클래스 분석모듈(210)은 사용자가 시험하기 위한 서버 컴포넌트, 즉 컴포넌트의 컴파일 된 형태인 클래스 파일을 클래스 분석모듈(210)에 입력하게 되면, 자바에서 지원하는 리플렉션(Reflection) API를 이용하여 입력된 클래스를 분석하고 그 클래스에 대한 정보를 추출한 후 다른 모듈에서 이용할 수 있도록 정보 저장소(230)에 저장하게 된다.The class analysis module 210 of the present invention uses a reflection API supported by Java when a user inputs a class component, which is a compiled form of a server component, that is, a component, to a class analysis module 210. It analyzes the input class, extracts information about the class and stores it in the information store 230 for use in other modules.

상기 XML로더모듈(220)은 정보 저장소(230)에 저장되어 있는 클래스 정보를 입력받아 테스트하려고 하는 클래스의 테스트 케이스를 XML파일 형태로 자동 생성한 후 최종적으로 생성된 XML문서를 테스트 클라이언트(260)를 생성하기 위해 테스트 클라이언트 생성모듈(240)과 테스트 데이터를 자동 생성하기 위한 테스트 데이터 생성모듈(250)에 전달하게 된다.The XML loader module 220 automatically generates a test case of a class to be tested by receiving class information stored in the information store 230 in the form of an XML file, and then generates a finally generated XML document by the test client 260. The test client generating module 240 and the test data generating module 250 for automatically generating the test data are generated to generate the test data.

상기 XML로더모듈(220)에서 생성된 XML문서는 계층적 구조를 가지는 데이터들을 효과적으로 표현할 수 있고 다른 형태의 문서로 변환하기 쉽다. 그리고 일반 사용자가 그 문서를 쉽게 이해하고 수정할 수 있다는 장점을 가지고 있다.The XML document generated by the XML loader module 220 can effectively express data having a hierarchical structure and can be easily converted into other types of documents. It has the advantage that the end user can easily understand and modify the document.

본 발명에서 테스트 케이스는 각 클래스의 공개(Public)로 설정되어진 메소드나 인터페이스들로 정의한다. 그리고 테스트 데이터는 각 테스트 클래스에서 요구되는 입출력 데이터를 지칭한다.In the present invention, test cases are defined as methods or interfaces set to public of each class. The test data refers to input and output data required for each test class.

상기 테스트 클라이언트 생성모듈(240)은 XML로더모듈(220)로부터 입력 받은 XML문서를 이용하여 테스트 클라이언트(260)를 생성한다. 테스트 클라이언트(260)는 테스팅에 필요한 모든 테스트 케이스를 포함하고 있으며 쓰레드 기반으로 이루어져 있다.The test client generation module 240 generates the test client 260 using the XML document received from the XML loader module 220. The test client 260 includes all test cases required for testing and is thread based.

한편, 상기 테스트 데이터 생성모듈(250)은 XML로더모듈(220)로부터 입력 받은 XML문서를 이용하여 테스트 데이터를 자동 입력하게 되는데, 이때 테스트 데이터는 무작위(Random)형태로 이루어지며 경계 값(Boundary-value) 시험을 하기 위해 사전에 무작위 데이터 패턴을 정의하여 사용할 수도 있다.Meanwhile, the test data generation module 250 automatically inputs test data using an XML document input from the XML loader module 220. In this case, the test data is formed in a random form and has a boundary value. value) A random data pattern may be defined and used in advance for testing.

상기 테스팅 서버모듈(270)은 테스트 데이터 생성모듈(250)에서 인가된 테스트 데이터와 테스트 클라이언트 생성모듈(240)로부터 생성된 테스트 클라이언트(260)를 입력받아 자바 클래스를 테스팅하게 된다.The testing server module 270 receives the test data applied by the test data generation module 250 and the test client 260 generated from the test client generation module 240 to test the Java class.

상기 테스팅 서버모듈(270)은 자바 리플렉션(Reflection)기능을 이용하여 동적으로 테스트 클라이언트(260) 객체를 인스턴스화키고, 여기서 인스턴스화된 테스트 클라이언트(260) 객체는 테스팅 서버에 있는 데이터 바인딩을 이용하여 테스트 데이터를 전달하고 테스트 클라이언트(260)의 쓰레드를 실행한다.The testing server module 270 dynamically instantiates a test client 260 object using a Java reflection function, where the instantiated test client 260 object uses test data in a testing server to test data. And execute the thread of the test client 260.

그리고, 상기 테스팅 서버모듈(270)은 테스팅이 종료된 테스트 클라이언트로부터 테스팅 결과 값을 인계받아 다시 XML형태의 문서로 정보저장소(230)로 저장함으로써 동일한 인터페이스를 가지는 컴포넌트를 테스팅할 경우에 재사용할 수 있도록 하고 있다.In addition, the testing server module 270 can take over the test result value from the test client after the testing is completed, and store the data as an XML document again in the information storage 230 so that the test server module 270 can be reused when testing a component having the same interface. To make it work.

도 3은 본 발명의 테스팅 서버모듈을 구체적으로 보인 상세도이다. 도면을 참조하면, 본 발명의 테스팅 서버모듈(270)은 상기 테스트 클라이언트 생성모듈(240)에서 생성된 테스트 클라이언트와 테스트 데이터 생성모듈(250)에서 생성된 테스트 데이터를 정의한 XML문서를 테스팅하게 된다.Figure 3 is a detailed view showing a testing server module of the present invention in detail. Referring to the drawings, the testing server module 270 of the present invention tests the XML document defining the test client generated by the test client generation module 240 and the test data generated by the test data generation module 250.

즉, 상기 테스팅 서버모듈(270)은 테스트 데이터 생성모듈(250)에서 생성된 XML문서로부터 XML 언마셜링(271)을 통해 데이터 객체로 전달할 데이터를 추출해 낸다. 상기 XML 언마셜링(271)에서 추출된 정보는 데이터 객체 호출부(271)를 통해 자바 리플렉션 기능을 이용하여 추출된 데이터 객체를 인스턴스화시키고, 여기서 인스턴스화된 데이터 객체는 데이터 바인딩부(274)를 통해 객체 내의 값을 설정하게 된다.That is, the testing server module 270 extracts data to be delivered to the data object through XML unmarshalling 271 from the XML document generated by the test data generation module 250. The information extracted by the XML unmarshalling 271 instantiates the data object extracted using the Java reflection function through the data object calling unit 271, and the instantiated data object is instantiated through the data binding unit 274. Set the value in the object.

상기 데이터 바인딩부(274)를 통해 설정된 객체 값은 테스트 클라이언트 호출부(275)를 통해 테스트 클라이언트를 인스턴스화할 때 생성자의 파라미터로 하여 테스트 클라이언트(260)로 그 데이터를 전달하게 되며, 전달되는 테스트 데이터의 변경은 각기 다른 테스트 클라이언트를 생성하게 된다.The object value set through the data binding unit 274 transfers the data to the test client 260 as a parameter of the constructor when the test client is instantiated through the test client caller 275, and the test data delivered. Changes in will result in different test clients.

그리고, 각기 다른 테스트 클라이언트를 쓰레드를 이용하여 실행한 후 각 테스트 클라이언트로부터 테스트 결과를 리턴 받고, 그들 정보를 종합하여 테스트 데이터 결과를 XML마셜링(272)으로 보내면 XML마셜링(272)에서 XML문서로 변환시켜 정보저장소(230)로 저장시켜 동일한 인터페이스를 가지는 컴포넌트를 테스팅할 경우에 재사용할 수 있도록 한다.After executing different test clients using threads, the test results are returned from each test client, the information is aggregated, and the test data results are sent to the XML marshalling 272. After converting the data into the information storage 230, the components having the same interface can be reused when testing.

도 4는 본 발명의 XML 로더모듈의 알고리즘을 보인 순서도이다. 도면을 참조하면, 본 발명의 XML 로더모듈(220)은 클래스 분석모듈(210)에서 분석되어 정보 저장소(230)에 저장된 정보를 입력으로 하고, 상기 XML 로더모듈(220)로 입력된 정보는 테스트 케이스 검색(S410)을 통하여 접근 할 수 있는 테스트 케이스와 후보 인터페이스를 찾게 된다. 예를 들어 엔터프라이즈 자바 빈의 경우에는 빈 클래스에 직접 접근할 수 없으므로 홈 인터페이스나 원격 인터페이스를 이용하여 접근할 수 있고, 그들 인터페이스에 공개(Public) 선언이 된 메소드만 선택할 수 있다.4 is a flowchart illustrating an algorithm of the XML loader module of the present invention. Referring to the drawings, the XML loader module 220 of the present invention is analyzed by the class analysis module 210 as the information stored in the information store 230 as an input, the information input to the XML loader module 220 is tested Through the case search (S410), the test cases and candidate interfaces that can be accessed are found. For example, in an enterprise Java bean, you can't access the bean class directly, so you can access it using either the home interface or the remote interface, and only select methods that have public declarations on those interfaces.

만약, 임의의 테스트 케이스가 선택이 되었다면 테스트 케이스에 대한 입력 파라미터와 출력 타입에 대한 정보를 분석(S420)한 후 테스트 케이스의 입력이나 출력이 일반적인 클래스가 아닌 사용자 정의 클래스가 포함되어 있는지를 검사(S430)하게 된다.If any test case is selected, after analyzing the information about the input parameter and output type for the test case (S420) and checking whether the input or output of the test case includes a user-defined class other than the general class ( S430).

단계 430에서 테스트 케이스에 사용자 정의 클래스가 포함이 되어 있지 않을 경우에는 식별된 정보를 XML파일에 추가(S460)시키고, 반대로, 테스트 케이스에 사용자 정의 클래스가 포함되어 있다면 그 클래스가 직렬화 가능(Serializable)한가를 체크(S440)한다.If the test case does not include the user-defined class in step 430, the identified information is added to the XML file (S460). On the contrary, if the test case includes the user-defined class, the class is serializable. Check the idle (S440).

단계 440에서 판단한 결과 테스트 케이스에 사용자 정의 클래스가 포함된 상태에서 직렬화(Serializable)가 가능하다면 사용자 정의 클래스에 대한 정보를 추출(S450)해 낸다. 여기서 사용자 정의 클래스는 내부 클래스를 가질 수 있으며 재귀적(Recursive)으로 내부 클래스가 없을 때까지 계속 반복하고, 반대로, 사용자 정의 클래스가 직렬화 가능하지 않는다면 테스팅을 종료한다.As a result of the determination in step 440, if serialization is possible in the state where the user-defined class is included in the test case, information on the user-defined class is extracted (S450). Here, a custom class can have an inner class and iteratively repeats until there is no inner class, and, conversely, ends testing if the custom class is not serializable.

마지막으로 단계 460에서, 사용자 정의 클래스가 포함되어 식별된 정보를 XML파일에 추가한 후 더 이상의 테스트 케이스가 존재하지 않으면 다음 테스트 데이터 생성모듈이나 테스트 클라이언트 생성모듈 과정으로 진행하고 추가 테스트 케이스가 존재한다면 단계 410으로 귀환하여 이전의 과정을 반복하게 된다.(S470)Finally, in step 460, after adding the information identified by the user-defined class to the XML file and no further test cases exist, proceed to the next test data generation module or test client generation module process, and if additional test cases exist Returning to step 410 to repeat the previous process (S470).

이하, 본 발명을 도 5 내지 도 8을 참조하여 구체적으로 설명한다. 도 5는 도 4의 XML파일 쓰기 단계(S460)에 의해 생성된 XML파일의 일예를 보인 것이다.Hereinafter, the present invention will be described in detail with reference to FIGS. 5 to 8. FIG. 5 illustrates an example of an XML file generated by the XML file writing step S460 of FIG. 4.

도면을 참조하면, 도면중 부호 500은 테스트 케이스 집합이고, 510은 테스트 케이스, 520은 메소드 태그, 530은 파라미터 태그, 540은 리턴태그를 표시한 것이다. 본 발명에 따른 테스트 케이스 집합(500)은 테스팅 가능한 테스트 케이스 리스트를 표시한 것이고, 상기 테스트 케이스 집합(500)에는 다수 개의 테스트 케이스(510)가 존재한다.Referring to the drawings, reference numeral 500 denotes a test case set, 510 denotes a test case, 520 denotes a method tag, 530 denotes a parameter tag, and 540 denotes a return tag. The test case set 500 according to the present invention displays a testable test case list, and the test case set 500 includes a plurality of test cases 510.

상기 테스트 케이스(510)는 테스팅하고자 하는 테스트 케이스가 속해 있는 클래스 명이 된다. 여기서 상기 테스트 케이스(510)는 도 4와 같이 엔터프라이즈 자바 빈의 경우에 홈 인터페이스나 원격 인터페이스가 될 수 있다.The test case 510 is a class name to which the test case to be tested belongs. Here, the test case 510 may be a home interface or a remote interface in the case of an enterprise Java bean as shown in FIG. 4.

테스트 케이스(510)에는 테스팅을 위한 메소드에 대한 정보를 표현하고 있다. 메소드 태그(520)는 테스트 메소드가 되고, 파라미터 태그(530)는 파라미터의 이름과 타입을 보여준다.The test case 510 expresses information about a method for testing. Method tag 520 becomes a test method, and parameter tag 530 shows the name and type of the parameter.

만약, 사용자가 정의한 클래스일 경우에는 패키지 이름과 클래스 이름으로 표현이 된다. 다음 리턴 태그(540)는 메소드의 리턴 정보를 표현 해 준다. 만약 보이드형(void type)일 경우에는 타입이 void로 표현되며 리턴객체가 사용자 정의객체라고 한다면 이 또한 재귀적(Recursive)으로 표현이 될 수 있다.In case of user defined class, it is expressed by package name and class name. The next return tag 540 represents the return information of the method. If the type is void, the type is represented as void. If the return object is a user-defined object, it can also be represented recursively.

도 6은 본 발명의 테스트 데이터 생성모듈(250)에 의해 생성된 XML파일의 일예를 보인 것이다. 이 XML파일은 테스트 클라이언트를 각기 다른 입력을 주어 다양한 입력 테스트를 할 수 있도록 데이터를 정의한 파일이다.6 shows an example of an XML file generated by the test data generation module 250 of the present invention. This XML file is a file that defines data so that various input tests can be given to the test client with different inputs.

여기서, 클래스 태그(600)는 도 5와 같이 테스트 케이스의 클래스 명이 되고 파라미터 태그(610)는 입력으로 들어 갈 데이터를 설정한 것이다. 테스트 데이터 생성모듈(250)은 XML로드 모듈(220)로 생성된 도 4의 내용을 분석하여 테스트 데이터 부분을 확장하여 입력 데이터를 무작위(Random)으로 자동 설정해 준다.Here, the class tag 600 is a class name of a test case as shown in FIG. 5, and the parameter tag 610 sets data to be input. The test data generation module 250 analyzes the content of FIG. 4 generated by the XML load module 220 and expands the test data portion to automatically set the input data randomly.

도 7은 본 발명의 테스트 클라이언트(260)에 대한 예제 프로그램을 설명하는 것이다.7 illustrates an example program for the test client 260 of the present invention.

도면을 참조하면, 본 발명은 테스트 클라이언트 소스에서 테스트 클라이언트 명(700)을 설정하고 쓰레드 형태로 동작하기 위해 쓰레드 가능한(Runnable) 인터페이스를 상속받게 된다. 테스트 클라이언트는 테스팅 서버모듈(270)에 의해 동적으로 객체가 생성 될 경우에 생성자 파라미터(710)로 데이터 바인딩이 이루어진 테스트 데이터 객체를 인계받게 된다. 클라이언트 클래스에서 필수로 요구되는 메소드는 run()과 getResult() 메소드이다. run()메소드는 쓰레드 가능한(Runnable) 인터페이스를 상속받았기 때문에 구현을 해 주어야 한다.Referring to the drawings, the present invention inherits a threadable interface to set the test client name 700 in the test client source and operate in the form of threads. When the object is dynamically generated by the testing server module 270, the test client takes over the test data object in which data binding is performed using the constructor parameter 710. The required methods in the client class are the run () and getResult () methods. The run () method inherits from the Runnable interface and must be implemented.

본 발명에서는 그 메소드의 상세 구현 코드(720)를 테스트 클라이언트 생성 모듈에서 자동으로 생성해 준다. run()메소드에는 각 테스트 케이스들의 메소드 이름(740)을 이용하여 실행된다. 그리고 run()메소드가 호출되어 발생되는 모든 결과는 해쉬 테이블 result를 통하여 저장되고 최종적으로 테스팅 서버모듈(270)에서 요구하면 테스트 결과 값을 getResult() 메소드(730)를 이용하여 리턴해 주게 된다.In the present invention, the detailed implementation code 720 of the method is automatically generated by the test client generation module. The run () method is executed using the method name 740 of each test case. In addition, all results generated by calling run () method are stored through the hash table result and finally, when requested by the testing server module 270, the test result value is returned using the getResult () method 730.

도 8은 도 3의 테스팅 서버모듈(270)의 입력 테스트 데이터와 출력 결과를 XML문서로 표현한 예제파일이다.8 is an example file representing an input test data and an output result of the testing server module 270 of FIG. 3 in an XML document.

전체 구조는 도 6과 거의 유사하며 출력 부분의 데이터가 추가되어 있음을 알 수 있다. 테스트 결과(800, 810)의 경우는 각기 다른 테스트 데이터로부터 처리된 결과를 보여주고 오류 테스트 결과(820)는 null형태로 보여 주고 있다.The overall structure is similar to that of Fig. 6 and it can be seen that the data of the output portion is added. The test results 800 and 810 show processed results from different test data, and the error test results 820 are shown in null form.

이상에서 설명한 바와 같이 본 발명은 객체 지향언어로 구현된 서버 컴포넌트를 테스팅 하고자 하는 경우에 다양한 테스트 케이스와 데이터를 자동 생성해 주고, 이를 XML문서로 생성하게 된다. 생성된 XML문서는 사용자가 쉽게 변경 할 수 있으며 동적으로 테스트 클라이언트에 데이터를 전달수단으로 사용되어, 서버측 컴포넌트 테스팅을 보다 유연하고 편리하게 테스팅할 수 있을 뿐만 아니라 테스팅한 XML문서를 저장함으로써 동일한 인터페이스를 가지는 컴포넌트를 테스팅할 경우에XML문서를 재사용할 수 있는 장점이 있다.As described above, the present invention automatically generates various test cases and data when testing a server component implemented in an object-oriented language, and generates it as an XML document. The generated XML document can be easily changed by the user and is used as a means of dynamically passing data to the test client, so that server-side component testing can be tested more flexibly and conveniently. The advantage of reusing XML documents when testing a component with.

이상에서 설명한 것은 본 발명의 엔터프라이즈 자바 빈 컴포넌트를 테스팅 장치 및 방법을 설명한 하나의 실시 예에 불과한 것으로써, 본 발명은 상기한 실시 예에 한정되지 않고, 이하의 특허 청구의 범위에서 청구하는 본 발명의 요지를 벗어남이 없이 당해 발명이 속하는 분야에서 통상의 지식을 가진 자라면 누구든지 다양한 변경 실시가 가능한 범위까지 본 발명의 기술적 사상이 미친다고 할 것이다.What has been described above is just one embodiment of the testing apparatus and method for the enterprise Java bean component of the present invention, and the present invention is not limited to the above-described embodiment, and the present invention is claimed in the following claims. Without departing from the gist of the present invention, those skilled in the art to which the present invention pertains to the spirit of the present invention to the extent that various changes can be made.

Claims (8)

컴포넌트의 컴파일된 형태인 클래스 파일을 테스트하기 위한 장치에 있어서,In a device for testing a class file that is a compiled form of a component, 자바에서 지원하는 리플렉션(Reflection) API를 이용하여 입력된 클래스를 분석하고 그 클래스에 대한 정보를 추출하는 클래스 분석모듈;A class analysis module for analyzing an input class and extracting information about the class using a reflection API supported by Java; 추출된 컴포넌트 클래스에 대한 정보를 저장하기 위한 정보 저장소;An information store for storing information about the extracted component class; 상기 정보 저장소에 저장되어 있는 클래스 정보를 입력받아 테스트하려고 하는 클래스의 테스트 케이스를 XML파일 형태로 생성하는 XML로더모듈;An XML loader module for generating a test case of a class to be tested by receiving class information stored in the information repository in the form of an XML file; 상기 XML로더모듈에서 생성된 XML문서를 이용하여 테스트 클라이언트를 생성하는 테스트 클라이언트 생성모듈;A test client generation module generating a test client using the XML document generated by the XML loader module; 상기 XML로더모듈에서 생성된 XML문서를 이용하여 테스트 데이터를 생성하는 테스트 데이터 생성모듈; 및A test data generation module for generating test data using the XML document generated by the XML loader module; And 상기 테스트 클라이언트와 상기 테스트 데이터를 자바 리플렉션을 이용하여 동적으로 XML문서와 상기 테스트 클라이언트 객체를 인스턴스화시켜 테스팅하는 테스팅 서버모듈;A testing server module configured to dynamically instantiate an XML document and the test client object and test the test client and the test data using Java reflection; 을 포함하는 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 장치.Enterprise Java bean component testing apparatus comprising a. 제 1항에 있어서, 상기 테스팅 서버모듈은,The method of claim 1, wherein the testing server module, 상기 테스트 데이터 생성모듈에서 생성된 XML문서에 대해 데이터 객체로 전달하기 위한 데이터를 추출해 내는 XML 언마셜링;XML unmarshalling for extracting data for transfer to a data object for the XML document generated by the test data generation module; 상기 XML 언마셜링을 통해 추출된 데이터에 대해 자바 리플렉션 기능을 이용하여 데이터 객체를 인스턴스화시키는 데이터 객체 호출부;A data object caller configured to instantiate a data object using a Java reflection function on the data extracted through the XML unmarshalling; 상기 인스턴스화된 데이터 객체로부터 객체 내의 값을 설정하여 객체를 생성하는 데이터 바인딩부;A data binding unit configured to generate an object by setting a value in the object from the instantiated data object; 상기 데이터 바인딩부에서 생성된 객체에 대해 생성자의 파라미터로 하여 테스트 데이터를 변경한 후 상기 테스트 클라이언트로 전달하고 테스트 결과를 리턴받는 테스트 클라이언트 호출부; 및A test client caller configured to change test data as a parameter of a constructor for the object created by the data binding unit, and then transfer the test data to the test client and return a test result; And 상기 테스트 클라이언트 호출부를 통해 리턴받은 테스트 결과를 XML문서로 변환시켜 상기 정보저장소에 저장시키는 XML마셜링;XML marshalling to convert the test result returned through the test client caller to an XML document and to store in the information store; 으로 이루어진 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 장치.Enterprise Java bean component testing device, characterized in that consisting of. 제 1항에 있어서, 상기 테스트 데이터 생성모듈에 의해 생성되는 테스트 데이터는 무작위(Random)형태로 이루어지며 경계 값(Boundary-value) 시험을 하기 위해 사전에 무작위 데이터 패턴을 정의하여 사용하는 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 장치.The method of claim 1, wherein the test data generated by the test data generation module is random and is used in advance to define a random data pattern to perform a boundary-value test. Enterprise Java bean component testing device. 제 1항에 있어서, 상기 테스트 클라이언트는 테스팅에 필요한 테스트 케이스를 포함하며, 쓰레드 기반으로 이루어진 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 장치.The apparatus of claim 1, wherein the test client includes a test case for testing and is thread-based. 컴포넌트의 컴파일된 형태인 클래스 파일을 테스트하기 위한 방법에 있어서,In the method for testing a class file that is a compiled form of a component, 자바에서 지원하는 리플렉션(Reflection) API를 이용하여 클래스를 분석하고 그 클래스에 대한 정보를 추출하여 저장하는 단계;Analyzing a class using a reflection API supported by Java, and extracting and storing information about the class; 저장된 클래스 정보에 대해 테스트하려고 하는 클래스의 테스트 케이스를 XML파일 형태로 생성하는 단계;Generating a test case of a class to be tested against the stored class information in the form of an XML file; 상기 XML파일을 이용하여 테스트 클라이언트와 테스트 데이터를 생성하는 단계; 및Generating test data with a test client using the XML file; And 자바 리플렉션을 이용하여 동적으로 XML파일과 상기 테스트 클라이언트 객체를 인스턴스화시키는 단계;를 포함하는 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 방법.And instantiating the XML file and the test client object dynamically using Java reflection. 제 5항에 있어서, 상기 클래스 테스트 케이스를 XML문서로 생성하는 단계는,The method of claim 5, wherein the generating of the class test case into an XML document comprises: 추출된 컴포넌트 클래스 정보에 대해 테스트 케이스를 검색하고, 테스트 케이스에 대한 입력 파라미터와 출력타입에 대한 정보를 분석하는 단계;Searching for a test case with respect to the extracted component class information, and analyzing information about an input parameter and an output type of the test case; 상기 테스트 케이스의 입력이나 출력타입에 대한 정보에 사용자가 정의한클래스가 포함되어 있는지 판단하고, 만약 사용자가 정의한 클래스가 포함되어 있을 경우 XML파일에 추가하는 단계; 및Determining whether the user-defined class is included in the information about the input or output type of the test case, and if the user-defined class is included, adding the class to the XML file; And 상기 클래스 정보에 사용자가 정의한 클래스에 대해 테스트 케이스가 존재하지 않을 때까지 반복하여 검색하는 단계;로 이루어진 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 방법.And repeatedly searching until the test case does not exist for the class defined by the user in the class information. 제 6항에 있어서, 상기 테스트 케이스의 입력이나 출력타입에 대한 정보에 사용자가 정의한 클래스가 포함되어 있지 않을 경우 직렬화가 가능한지를 판단하고, 만약 직렬화가 가능할 경우 클래스 인터페이스를 분석하여 XML 파일에 추가하는 단계를 포함하는 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 방법.The method of claim 6, wherein the information about the input or output type of the test case does not include a class defined by the user, and determines whether serialization is possible. An enterprise Java bean component testing method comprising the steps of: 제 5항에 있어서, 상기 테스트 클라이언트는 테스팅 서버모듈로부터 생성자 파라미터로 하여 데이터를 전달받고, getResult() 메소드를 통해 데이터를 다시 반환하는 것을 특징으로 하는 엔터프라이즈 자바 빈 컴포넌트 테스팅 방법.The method of claim 5, wherein the test client receives data as a constructor parameter from a testing server module and returns data through a getResult () method.
KR10-2002-0078307A 2002-12-10 2002-12-10 Appratus and Method for Enterprise JavaBean Component Testing KR100501412B1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
KR10-2002-0078307A KR100501412B1 (en) 2002-12-10 2002-12-10 Appratus and Method for Enterprise JavaBean Component Testing

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
KR10-2002-0078307A KR100501412B1 (en) 2002-12-10 2002-12-10 Appratus and Method for Enterprise JavaBean Component Testing

Publications (2)

Publication Number Publication Date
KR20040050463A true KR20040050463A (en) 2004-06-16
KR100501412B1 KR100501412B1 (en) 2005-07-18

Family

ID=37344655

Family Applications (1)

Application Number Title Priority Date Filing Date
KR10-2002-0078307A KR100501412B1 (en) 2002-12-10 2002-12-10 Appratus and Method for Enterprise JavaBean Component Testing

Country Status (1)

Country Link
KR (1) KR100501412B1 (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100777103B1 (en) * 2005-08-19 2007-11-19 한국전자통신연구원 Apparatus and method for generation of test driver
US7895575B2 (en) 2005-08-19 2011-02-22 Electronics And Telecommunications Research Institute Apparatus and method for generating test driver
CN112256455A (en) * 2020-10-30 2021-01-22 中国建设银行股份有限公司 Method, medium and electronic device for optimizing transaction remote procedure call
KR20210060689A (en) * 2019-11-18 2021-05-27 주식회사 오픈드래프트 Server side data component for support of development and management and method for perform the data component
KR102305845B1 (en) * 2020-12-21 2021-09-29 쿠팡 주식회사 Electronic apparatus for verifying code and method thereof

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR102289574B1 (en) * 2020-05-14 2021-08-13 한국과학기술원 Method and apparatus for grey-box fuzzing with distance-based fitness function

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6209125B1 (en) * 1997-06-03 2001-03-27 Sun Microsystems, Inc. Method and apparatus for software component analysis
KR100250993B1 (en) * 1998-01-14 2000-04-15 이계철 Verification method for java component s/w quality certification
US6237135B1 (en) * 1998-06-18 2001-05-22 Borland Software Corporation Development system with visual design tools for creating and maintaining Java Beans components
US6385739B1 (en) * 1999-07-19 2002-05-07 Tivo Inc. Self-test electronic assembly and test system
KR100404908B1 (en) * 2001-12-27 2003-11-07 한국전자통신연구원 Apparatus and method for testing interfaces of enterprise javabeans components

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100777103B1 (en) * 2005-08-19 2007-11-19 한국전자통신연구원 Apparatus and method for generation of test driver
US7895575B2 (en) 2005-08-19 2011-02-22 Electronics And Telecommunications Research Institute Apparatus and method for generating test driver
KR20210060689A (en) * 2019-11-18 2021-05-27 주식회사 오픈드래프트 Server side data component for support of development and management and method for perform the data component
CN112256455A (en) * 2020-10-30 2021-01-22 中国建设银行股份有限公司 Method, medium and electronic device for optimizing transaction remote procedure call
KR102305845B1 (en) * 2020-12-21 2021-09-29 쿠팡 주식회사 Electronic apparatus for verifying code and method thereof
KR102362262B1 (en) * 2020-12-21 2022-02-14 쿠팡 주식회사 Electronic apparatus for verifying code and method thereof
WO2022139050A1 (en) * 2020-12-21 2022-06-30 쿠팡 주식회사 Electronic device for verifying code and method therefor
US11429510B2 (en) 2020-12-21 2022-08-30 Coupang Corp. Electronic apparatus for verifying code and method thereof

Also Published As

Publication number Publication date
KR100501412B1 (en) 2005-07-18

Similar Documents

Publication Publication Date Title
US11789715B2 (en) Systems and methods for transformation of reporting schema
US8898627B2 (en) Systems and methods for applying rules to transform objects of an application
US7305659B2 (en) Handling parameters in test scripts for computer program applications
US7124401B2 (en) Testing versions of applications
Dig et al. How do APIs evolve? A story of refactoring
US8706771B2 (en) Systems and methods for analyzing and transforming an application from a source installation to a target installation
US7707553B2 (en) Computer method and system for automatically creating tests for checking software
US6772083B2 (en) Computer program test configurations with data containers and test scripts
US20110283270A1 (en) Systems and methods for analyzing changes in application code from a previous instance of the application code
US20040128584A1 (en) Method and system for determining computer software test coverage
US8285662B2 (en) Framework for delta analysis during automated builds
Henkel et al. Shipwright: A human-in-the-loop system for dockerfile repair
US20080052685A1 (en) Apparatus and method for implementing components, and apparatus and method for verifying components
US20040153791A1 (en) Identifying solutions to computer problems in client/server system
US7418628B2 (en) Systems and methods for identifying solutions to computer problems using contexts and versions
Binkley et al. Tree-oriented vs. line-oriented observation-based slicing
KR100501412B1 (en) Appratus and Method for Enterprise JavaBean Component Testing
Brada et al. Practical verification of component substitutability using subtype relation
US20040153881A1 (en) Identifying solutions to computer problems in main system by service system in distributed system landscape
US7403933B2 (en) Identifying solutions to computer problems in main system by service system
CN115544518A (en) Vulnerability scanning engine implementation method and device, vulnerability scanning method and electronic equipment
CN113031964B (en) Big data application management method, device, equipment and storage medium
Kienle et al. Leveraging program analysis for web site reverse engineering
US20180314497A1 (en) Translation of assembler language code using intermediary technical rules language (trl)
Paradkar SALT-an integrated environment to automate generation of function tests for APIs

Legal Events

Date Code Title Description
A201 Request for examination
E902 Notification of reason for refusal
E701 Decision to grant or registration of patent right
GRNT Written decision to grant
FPAY Annual fee payment

Payment date: 20080701

Year of fee payment: 4

LAPS Lapse due to unpaid annual fee