Difference between revisions of "Studio:Deploying STRIDE on the Target"

From STRIDE Wiki
Jump to: navigation, search
(The TestApp Configuration)
Line 36: Line 36:
 
==The TestApp Configuration==
 
==The TestApp Configuration==
 
[[Image:TestAppConfiguration.jpg|frame]]
 
[[Image:TestAppConfiguration.jpg|frame]]
 +
 +
[[Category:Installation]]

Revision as of 13:46, 24 September 2008

STRIDE Code on the Target

In order for STRIDE Studio to interoperate with your target system, some STRIDE-specific code must be part of the binary running on your target.

STRIDE Runtime & PAL

The first category of STRIDE code is the combination of STRIDE Runtime and PAL, which together provide standard STRIDE runtime services customized for the target hardware and operating system.

The runtime + PAL combination is typically created as part of a STRIDE platform integration. This code is static in nature; once produced, it is usually packaged as a linkable library for use with the dynamic portions of the test code.

IM & Target Test Code

The second category is more dynamic in nature and is referred to as an Intercept Module (IM). This code takes the form of c or c++ source code that is generated by STRIDE Studio from the SCL instrumentation you have applied to your target source header files.

It's important to understand the way that the IM is used in your specific testing scenario, since this controls the ways in which the overall STRIDE code can be deployed on your target system.

IM Composition

  • If your SCL includes specific interface instrumentation (e.g. the scl_function() or scl_msg() pragmas are used), the IM code will include some combination of sutbs, proxies, and delegates to enable the remoting of the interfaces you have instrumented. This type of instrumentation is typically used with host-based testing, where scripts running on the host call C functions running on the host.
  • If your SCL includes instrumentation for target-based testing utilizing one or more C++ test classes (e.g. the scl_test_class() pragma), the IM code will include a synthesized function to run each test class (which includes a stub that enables the function to be called from the remote host), and the C++ test class code that you write.


Target Deployment Models

It is not always known what the ultimate IM setup will be when starting to create tests for a platform, but it's important to consider your needs up front, since the STRIDE deployment model you choose will affect project workflow.

The TestAgent Configuration

TestAgentConfiguration.jpg

By default, we recommend that you consider the light-weight "TestAgent" configuration. This deployment model imposes several limitations, but this model minimizes the impact on your target system and workflow, and in many testing scenarios, the limitations are not ***.

Requirements:

  • IM can contain only stubs
  • No target c/cpp files may be used to build the executable image
    • For target-based testing, test class implementations are in header file(s)


The TestApp Configuration

TestAppConfiguration.jpg