Giter Club home page Giter Club logo

corbasim's Introduction

CORBASIM

C++ framework for automatic generation of testing tools for CORBA-based applications. Or in other words, CORBASIM aims to be the SoapUI for CORBA-based applications.

CORBASIM has a code generator that generates CORBASIM plug-ins from IDL interfaces. These plug-ins may be used with the CORBASIM generic application (corbasim_app).

GitHub mirror for https://code.google.com/p/corbasim/

corbasim_app

Example

Generate a plug-in from your CORBA interfaces.

module Test
{
    struct Date
    {
        long year;
        long month;
        long day;
    };

    struct Time
    {
        long hours;
        long minutes;
        float seconds;
    };

    interface Example
    {
        void sayHello(in string to);
        void setDateTime(in Date date, in Time time);
    };
};
$ corbasim_make -n test_plugin test.idl
$ cmake .
$ make

Given the example and the steps above, corbasim will generate two libraries:

  • libtest_plugin_idl.so - Common code for all interfaces defined in test.idl.
  • libcorbasim_reflective_Test_Example.so - Actual corbasim plug-in for Test::Example interface.

Launch corbasim_app loading your plug-ins:

$ corbasim_app -d /path/to/your/plug-ins/directory

Compilation and installation

Requeriments:

  • JRE
  • C++ compiler. Tested with GCC and Clang
  • Boost C++ Libraries
  • Qt4 or Qt5, components: Widgets, Script, ScriptTools.
  • A CORBA ORB implementation in C++. Widely tested with ACE TAO

Steps to compile and install:

$ cp corbasim.cfg.base corbasim.cfg
$ vim corbasim.cfg
$ ./configure -c corbasim.cfg
$ cd build && make && make install

ORB support

CORBASIM has been developed with TAO (The ACE ORB) and tested with serveral of its versions. However, it could be used with some other ORB implementations in C++.

corbasim's People

Contributors

asenac avatar dsevilla avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.