Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
dataset_editor [2017/12/21 04:17] admin [DataSet Editor] |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== DataSet Editor ===== | ||
- | // | ||
- | |||
- | //DataSet Editor// allows you to create and edit the dataset for a transition. You can dynamically add or remove fields. It supports several combinatorial test generation algorithms including // | ||
- | |||
- | {{http:// | ||
- | |||
- | ---- | ||
- | ==== Usage ==== | ||
- | A transition dataset is automatically used by // | ||
- | |||
- | ---- | ||
- | ==== Create DataSet ==== | ||
- | //DataSet// is automatically created when you open //DataSet Editor// through transition context menu //Edit DataSet//. | ||
- | |||
- | === DataSet Attributes==== | ||
- | * //Dataset Name// - change the default value to an appropriate name. | ||
- | * // | ||
- | * pairwise | ||
- | * 3-wise | ||
- | * 4-wise | ||
- | * full combinatorial | ||
- | * // | ||
- | * //Auto Refresh// - if the data set should be refreshed from its source. Only applicable if the data set was imported from external file or excel. Be aware that the data set will be wipe out and replaced by the content from the external source. If you have modified the data set after the import, you should have this checkbox unchecked to avoid the lost of your updates. | ||
- | * //Random Retrieval// - how the datatable will be retrieved. | ||
- | |||
- | === DataSet Fields=== | ||
- | Fields are added by clicking on {{http:// | ||
- | |||
- | By default, fields are created to participate in the algorithm in generating test cases. | ||
- | |||
- | Use the default (leave it blank) when creating non-verification field, which indicates that these fields are independent of each other. | ||
- | |||
- | In some cases a group of field may be related to each other and they must choose the related value from the list. For example if you have //Credit Card Type// and //Credit Card Number// fields added to the dataset and defined a list of credit card types like visa/ | ||
- | |||
- | By sharing the same group id, fields will take the values from their lists at the same position. | ||
- | |||
- | You can delete field by clicking on {{http:// | ||
- | |||
- | ---- | ||
- | ====Generate DataTable==== | ||
- | Once you have the fields defined, you can generate the dataset for the fields by clicking on the // | ||
- | |||
- | You can remove unwanted rows by clicking on {{http:// | ||
- | |||
- | If you have verification field(s), they will be left blank. You can enter the appropriate values for each row. The results will be saved if // | ||
- | |||
- | During the model execution, the dataset will be loaded and traversed. Besides the option to traverse the datatable sequentially or randomly as described above, you can also control the sequence of which row to be used first programmatically in mScript by setting the user variable //dataset name//_idx. | ||
- | |||
- | ---- | ||
- | ==== Sorting DataTable ==== | ||
- | DataTable can be sorted by clicking on the column label. | ||
- | |||
- | |||
- | ---- | ||
- | ==== DataSet Import ==== | ||
- | |||
- | You may also import dataset from external file (xsl, csv, jdbc database and url) and dataset you have created with [[datadesignplugin| DataDesigner]]. | ||
- | |||
- | * file - to import data from external file (xsl, csv, url) | ||
- | * dataset - to import data from [[datadesignplugin | DataDesigner]] | ||
- | * sql - to import data from an external jdbc database | ||
- | * url - to import data from an URL that returns tab delimited file | ||
- | |||
- | To import data from external files, click on //import// link. Following dialog will appear: | ||
- | |||
- | {{http:// | ||
- | |||
- | The file extension is used to determine the file type: | ||
- | |||
- | * .csv, .tab, .txt - for text files. | ||
- | * .xls - MS Excel (Excel 2003 file). Append //; | ||
- | * url - tab delimited files residing on a remote host | ||
- | * .ds - for dataset created by [[datadesignplugin | DataDesigner]] | ||
- | |||
- | === Sql Data Source=== | ||
- | Importing from a jdbc database requires that you have defined a [[system datasource]] first. Then you just enter the following URI: | ||
- | sql: | ||
- | |||
- | where '' | ||
- | |||
- | === URL / Http Data Source=== | ||
- | Importing from http data source can be set using the following URI: | ||
- | url: | ||
- | | ||
- | where the http URL above is the url accessible from '' | ||
- | |||
- | |||
- | The import operation is a one time operation. | ||
- | |||
- | To prevent such loss of changes, it is recommended to import data from dataset created with [[datadesignplugin | DataDesigner]]. | ||