Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

A page to describe the how-to's for various processes in SRDP.

Table of Contents:

Table of Contents
maxLevel2

Expand
titleImport L2 Requirements /Update Cameo Model with Updates from Jira.
Section

Import

L2 Requirements

/Update Cameo Model with Updates from Jira

Column
width75%

Currently we have three types of information that we track in Jira and also reflect in the Cameo model:

  • L2 Implementation Tickets from various Jira projects that are tracked in the System Architecture Model
  • L1 Verification Tickets from the Jira Architecture project that are tracked in the System Architecture Model
  • L1 Validation Tickets from the Jira SRDP project that are tracked in the Requirements Model.

In order to update any of these the process is approximately the same:

  1. Use the Jira Export script (at right) to export the tickets into a CSV file.
    ./jiraExport -u <username> -t [verification, validation, L2] <outputfilename>.csv
  2. Use the java program (at right) to translate the CSV file from above into reqIF format. Each of the three types of import requires it's own specification file, make sure you select the correct one.
    java -jar <relative path to downloaded jar file> <import specification xml> <CSV file> <Output filename>.reqif
  3. Use a text editor to modify the output ReqIf file changing the xmlns:ns2="http://... to xmlns="http://...
  4. Start the Cameo Program and open the appropriate project.
    1. Recursively lock the package containing the requirements to be updated.
  5. Import the .reqif file under File>> Import From >> Requirements Interchange Format
    1. Select the file in the dialog
    2. If prompted: select the correct package for the addition of new requirements. I suggest creating a subpackage to import the new requirements to and then moving them to the appropriate location. If you are not prompted for a location, then no new requirements are imported (although existing requirements have been updated).
    3. For all new requirements, you may need to correct the element numbering to be "Consecutive" and use the required prefix.
    4. Move new requirements to reproduce the hierarchy of the Jira tickets.
  6. Remove the lock on the requirements allocation package (committing the changes to the server).
The L2 requirements are tracked within the respective
Column
width25%

Resources


Jira Export

Type

Import Specification

File

Target

Project

Verification

Verification Import Spec.Architecture

Validation

Validation Import Spec.Requirements
L2L2 Import Spec.Architecture


Expand
titleImport Tests from CSV to JIRA
Section

Import Tests from CSV to Jira

Column
width75%

Importing from a CSV file to Jira was used in Wave 1 for the creation of the verification test tickets. The script to the right handles the import and does the linking between Tests and Sub-Tests. A few comments about the CSV file:

The CSV file MUST contain the following columns with the exact text in a header row at the top:

  • description: The long description of the test.
  • summary: A short description, this will become the ticket title
  • issuetype: Should either be Test or Sub-Test. Sub-Tests are assumed to be linked to the most recent Test ticket in the file.

The python script usage can be determined by "./importTestToJira -h"


Note: You must have the Python Jira module installed in your working environment (see https://jira.readthedocs.io/en/master/)

Column
width25%

Resources