Test Integration: Difference between revisions
No edit summary |
|||
Line 1: | Line 1: | ||
In this article, we discuss adding tests to your target build | In this article, we discuss adding tests to your target build and running these tests. | ||
The starting point of this article assumes that | The starting point of this article assumes that you have completed the steps described in the article [[Test Integration]]. | ||
== Adding the TestIntro Tests to the Target Build == | == Adding the TestIntro Tests to the Target Build == | ||
Here we will add the [[Test Intro Sample|TestIntro sample tests]] to the target build.<ref>The TestIntro sample is distributed in the [[Package_Installation#Samples|Samples package]].</ref> We will use the same technique used earlier in the [[Test_Integration#Building_the_Target_with_STRIDE_Diagnostics|Test Integration]] to incorporate these tests. | Here we will add the [[Test Intro Sample|TestIntro sample tests]] to the target build.<ref>The TestIntro sample is distributed in the [[Package_Installation#Samples|Samples package]].</ref> We will use the same technique used earlier in the [[Test_Integration#Building_the_Target_with_STRIDE_Diagnostics|Test Integration]] to incorporate these tests. | ||
The [[Test Unit Pragmas|SCL pragmas]] that declare the TestIntro test units are in the file <tt>s2_testintro_test.h</tt>, so this file needs to be supplied as input to the STRIDE build tools. If you are using the Makefile technique described in [[Test_Integration#Build_Tool_Inputs|Test Integration]], you simply need to add <tt>[path]Samples/TestIntro</tt> to the <tt> | The [[Test Unit Pragmas|SCL pragmas]] that declare the TestIntro test units are in the file <tt>s2_testintro_test.h</tt>, so this file needs to be supplied as input to the STRIDE build tools. If you are using the Makefile technique described in [[Test_Integration#Build_Tool_Inputs|Test Integration]], you simply need to add <tt>[path]Samples/TestIntro/s2_testintro_test.h</tt> to the <tt>SCL_SRCS_H</tt> variable so that it will be picked up as input to <tt>s2scompile</tt>. | ||
In addition, you need to include the TestIntro source files in the target compile/link. | In addition, you need to include the TestIntro source files in the target compile/link. | ||
Line 33: | Line 12: | ||
Once the build is complete, download the binary to the target in preparation of running the tests. | Once the build is complete, download the binary to the target in preparation of running the tests. | ||
== Running | == Running the TestIntro Tests == | ||
To execute the TestIntro tests, use a Windows or Linux host computer that has connectivity with the target system via your configured STRIDE transport (TCP/IP or serial). Additionally, make the generated STRIDE database (.sidb) visible to the host computer via a shared filesystem or a file copy to the host system. | To execute the TestIntro tests, use a Windows or Linux host computer that has connectivity with the target system via your configured STRIDE transport (TCP/IP or serial). Additionally, make the generated STRIDE database (.sidb) visible to the host computer via a shared filesystem or a file copy to the host system. | ||
If not already present, install the appropriate [[Package_Installation#Host_Tools | Host Tools]] package on the host computer. | If not already present, install the appropriate [[Package_Installation#Host_Tools | Host Tools]] package on the host computer. | ||
To run the tests, ensure that your target system is running, then enter the following in a host console: | |||
To run | |||
<source lang="bash"> | <source lang="bash"> | ||
stride - | stride --database=<path>/stride.sidb --device=<device_address> | ||
</source> | </source> | ||
Line 75: | Line 41: | ||
Disconnecting from device... | Disconnecting from device... | ||
Saving result file... | Saving result file... | ||
</pre> | </pre> | ||
== Uploading and Viewing Results in Test Space == | |||
Optionally, if you have Internet connectivity and access to your company's [[STRIDE Test Space|Test Space]]<ref>You need to have an account with access to a dedicated project and space created by your Test Space administrator</ref> you could run again the TestIntro tests and upload the results by executing: | |||
<source lang="bash"> | |||
stride --database=<path>/stride.sidb --device=<device_address> -u --testspace https://<user>:<pwd>@<mycompany>.stridetestspace.com --project "Stride Deployment" --space TestIntro | |||
</source> | |||
[[image:TestIntro_spacepage.jpg|thumb||TestIntro Test Space Page]] | [[image:TestIntro_spacepage.jpg|thumb||TestIntro Test Space Page]] | ||
Open your web browser, login to your company's test space site if needed and navigate to the '''All Projects''' page. | |||
You should now see the '''TestIntro''' test space listed under the '''Stride Deployment''' project, and see that TestIntro's '''Result Set Count''' is now 1. | You should now see the '''TestIntro''' test space listed under the '''Stride Deployment''' project, and see that TestIntro's '''Result Set Count''' is now 1. |
Revision as of 05:10, 30 September 2009
In this article, we discuss adding tests to your target build and running these tests.
The starting point of this article assumes that you have completed the steps described in the article Test Integration.
Adding the TestIntro Tests to the Target Build
Here we will add the TestIntro sample tests to the target build.[1] We will use the same technique used earlier in the Test Integration to incorporate these tests.
The SCL pragmas that declare the TestIntro test units are in the file s2_testintro_test.h, so this file needs to be supplied as input to the STRIDE build tools. If you are using the Makefile technique described in Test Integration, you simply need to add [path]Samples/TestIntro/s2_testintro_test.h to the SCL_SRCS_H variable so that it will be picked up as input to s2scompile.
In addition, you need to include the TestIntro source files in the target compile/link.
Once the build is complete, download the binary to the target in preparation of running the tests.
Running the TestIntro Tests
To execute the TestIntro tests, use a Windows or Linux host computer that has connectivity with the target system via your configured STRIDE transport (TCP/IP or serial). Additionally, make the generated STRIDE database (.sidb) visible to the host computer via a shared filesystem or a file copy to the host system.
If not already present, install the appropriate Host Tools package on the host computer.
To run the tests, ensure that your target system is running, then enter the following in a host console:
stride --database=<path>/stride.sidb --device=<device_address>
The text below should be output to your host console as the test progresses.
Loading database... Connecting to device... runtime version: 4.1.xx Executing test units... s2_testintro_cclass > 1 passed, 1 failed, 0 in progress, 0 not in use. s2_testintro_flist > 2 passed, 1 failed, 0 in progress, 0 not in use. s2_testintro_testdoubles > 3 passed, 0 failed, 0 in progress, 0 not in use. s2_testintro_testpoints > 3 passed, 0 failed, 0 in progress, 0 not in use. --------------------------------------------------------------------- Summary: 9 passed, 2 failed, 0 in progress, 0 not in use. Disconnecting from device... Saving result file...
Uploading and Viewing Results in Test Space
Optionally, if you have Internet connectivity and access to your company's Test Space[2] you could run again the TestIntro tests and upload the results by executing:
stride --database=<path>/stride.sidb --device=<device_address> -u --testspace https://<user>:<pwd>@<mycompany>.stridetestspace.com --project "Stride Deployment" --space TestIntro
Open your web browser, login to your company's test space site if needed and navigate to the All Projects page.
You should now see the TestIntro test space listed under the Stride Deployment project, and see that TestIntro's Result Set Count is now 1.
Click on the TestIntro link to be presented with the TestIntro space page. At the bottom of the page you will see a table displaying the uploaded result sets for this test space. Click on the Sequence_1 link to show detailed results for this test run.
Notes
- ↑ The TestIntro sample is distributed in the Samples package.
- ↑ You need to have an account with access to a dedicated project and space created by your Test Space administrator