aboutsummaryrefslogtreecommitdiffstats
path: root/docs/testing
AgeCommit message (Expand)AuthorFilesLines
2018-09-23Update tempest_full resultCédric Ollivier1-1/+1
2018-09-22Update results in configguide (rally_jobs)Cédric Ollivier1-8/+9
2018-09-13Prepare gambia Docker tagsCédric Ollivier1-9/+9
2018-09-09Stop including html files in devguideCédric Ollivier1-37/+6
2018-09-09Update Config GuideCédric Ollivier1-64/+89
2018-08-18Publish Functest doc onlineCédric Ollivier7-63/+7
2018-07-23New Heat IMS testcaseValentin Boucher1-0/+22
2018-07-08Refactor tempest commonCédric Ollivier5-13/+9
2018-06-18Merge "Config flavor metadata via functest - docs update"Cedric Ollivier2-0/+14
2018-06-15Remove parser containerCédric Ollivier2-3/+0
2018-06-15Remove cloudify_ims_perfCédric Ollivier2-45/+0
2018-06-15Remove cli and apiCédric Ollivier3-37/+6
2018-06-14Config flavor metadata via functest - docs updatePanagiotis Karalis2-0/+14
2018-05-16Updated documentation for juju_epc testssoumaya2-4/+40
2018-04-21Update graphs in userguideLinda Wang2-2/+2
2018-04-20Update configguideLinda Wang1-202/+94
2018-04-20Merge "Update test results in userguide"Cedric Ollivier2-65/+106
2018-04-20Merge "Add Kubernetes test details to functest userguide"Juha Kosonen1-0/+28
2018-04-20Update test results in userguideLinda Wang2-65/+106
2018-04-19Add Kubernetes test details to functest userguideKonrad Djimeli1-0/+28
2018-04-19Add Kubernetes test results to functest userguideKonrad Djimeli1-0/+36
2018-04-17Merge "Add Kubernetes tests to userguide"Linda Wang1-1/+17
2018-04-17Add Kubernetes tests to userguideKonrad Djimeli1-1/+17
2018-04-15Fix emails and copyrights in all conf.pyCédric Ollivier7-21/+21
2018-04-15Update configguide (latest results)Cédric Ollivier1-27/+23
2018-04-15Remove odl_netvirt testcaseCédric Ollivier4-11/+2
2018-04-09Update userguideLinda Wang2-100/+26
2018-04-09Remove Ceilometer test scenariosJuha Kosonen2-2/+0
2018-04-04Fix Functest Internship ReportsCédric Ollivier8-100/+813
2018-04-04Fix Functest Developer GuideCédric Ollivier2-12/+197
2018-04-04Fix Functest User GuideCédric Ollivier9-300/+508
2018-04-04Fix Functest Config GuideCédric Ollivier6-115/+310
2018-03-20Implement trunk ports - Documentation partPanagiotis Karalis2-1/+11
2018-03-08Remove duplicate ubuntu trusty/14.04 os imageValentin Boucher1-1/+0
2018-02-16Get properly env vars or their default valuesCédric Ollivier1-0/+4
2018-02-13Remove INSTALLER_IP from FunctestCédric Ollivier1-5/+0
2018-02-13Simplify functest/cli/commands/cli_env.pyCédric Ollivier1-6/+0
2018-02-04Update results printed in configguide.rstCédric Ollivier1-78/+77
2018-02-04Fix links in configguide.rstCédric Ollivier1-13/+13
2018-02-01Rename a common credential file for OS and K8SLinda Wang3-19/+19
2017-12-21Update cirros image to 0.4.0Michael Polenchuk2-5/+5
2017-12-21Merge "Remove openstack_[clean,snapshot]"Linda Wang2-4/+1
2017-12-20Fix typos in test_details.rst and test_overview.rstCédric Ollivier2-25/+25
2017-12-19Remove openstack_[clean,snapshot]Cédric Ollivier2-4/+1
2017-11-29Update documentation of FunctestLinda Wang3-25/+31
2017-11-28Fix the doc of snaps testLinda Wang1-2/+2
2017-11-22Remove prepare_envJose Lausuch3-36/+1
2017-11-17Update documentation for FunctestLinda Wang4-45/+7
2017-10-20Wrap Functest Ascii Diagram in literal text blockTrevor Bramwell1-15/+15
2017-10-18Harmonization titles of the testing projectMorgan Richomme3-22/+4
t_backend_driver(value); if (be == NULL) { error_report(QERR_INVALID_PARAMETER_VALUE, "type", "a TPM backend type"); tpm_display_backend_drivers(); return 1; } /* validate backend specific opts */ qemu_opts_validate(opts, be->opts, &local_err); if (local_err) { error_report_err(local_err); return 1; } drv = be->create(opts, id); if (!drv) { return 1; } tpm_backend_open(drv, &local_err); if (local_err) { error_report_err(local_err); return 1; } QLIST_INSERT_HEAD(&tpm_backends, drv, list); return 0; } static int tpm_init_tpmdev(void *dummy, QemuOpts *opts, Error **errp) { return configure_tpm(opts); } /* * Walk the list of TPM backend drivers that are in use and call their * destroy function to have them cleaned up. */ void tpm_cleanup(void) { TPMBackend *drv, *next; QLIST_FOREACH_SAFE(drv, &tpm_backends, list, next) { QLIST_REMOVE(drv, list); tpm_backend_destroy(drv); } } /* * Initialize the TPM. Process the tpmdev command line options describing the * TPM backend. */ int tpm_init(void) { if (qemu_opts_foreach(qemu_find_opts("tpmdev"), tpm_init_tpmdev, NULL, NULL)) { return -1; } atexit(tpm_cleanup); return 0; } /* * Parse the TPM configuration options. * To display all available TPM backends the user may use '-tpmdev help' */ int tpm_config_parse(QemuOptsList *opts_list, const char *optarg) { QemuOpts *opts; if (!strcmp(optarg, "help")) { tpm_display_backend_drivers(); return -1; } opts = qemu_opts_parse_noisily(opts_list, optarg, true); if (!opts) { return -1; } return 0; } #endif /* CONFIG_TPM */ static const TPMDriverOps *tpm_driver_find_by_type(enum TpmType type) { int i; for (i = 0; i < TPM_MAX_DRIVERS && be_drivers[i] != NULL; i++) { if (be_drivers[i]->type == type) { return be_drivers[i]; } } return NULL; } static TPMInfo *qmp_query_tpm_inst(TPMBackend *drv) { TPMInfo *res = g_new0(TPMInfo, 1); TPMPassthroughOptions *tpo; res->id = g_strdup(drv->id); res->model = drv->fe_model; res->options = g_new0(TpmTypeOptions, 1); switch (drv->ops->type) { case TPM_TYPE_PASSTHROUGH: res->options->type = TPM_TYPE_OPTIONS_KIND_PASSTHROUGH; tpo = g_new0(TPMPassthroughOptions, 1); res->options->u.passthrough.data = tpo; if (drv->path) { tpo->path = g_strdup(drv->path); tpo->has_path = true; } if (drv->cancel_path) { tpo->cancel_path = g_strdup(drv->cancel_path); tpo->has_cancel_path = true; } break; case TPM_TYPE__MAX: break; } return res; } /* * Walk the list of active TPM backends and collect information about them * following the schema description in qapi-schema.json. */ TPMInfoList *qmp_query_tpm(Error **errp) { TPMBackend *drv; TPMInfoList *info, *head = NULL, *cur_item = NULL; QLIST_FOREACH(drv, &tpm_backends, list) { if (!tpm_model_is_registered(drv->fe_model)) { continue; } info = g_new0(TPMInfoList, 1); info->value = qmp_query_tpm_inst(drv); if (!cur_item) { head = cur_item = info; } else { cur_item->next = info; cur_item = info; } } return head; } TpmTypeList *qmp_query_tpm_types(Error **errp) { unsigned int i = 0; TpmTypeList *head = NULL, *prev = NULL, *cur_item; for (i = 0; i < TPM_TYPE__MAX; i++) { if (!tpm_driver_find_by_type(i)) { continue; } cur_item = g_new0(TpmTypeList, 1); cur_item->value = i; if (prev) { prev->next = cur_item; } if (!head) { head = cur_item; } prev = cur_item; } return head; } TpmModelList *qmp_query_tpm_models(Error **errp) { unsigned int i = 0; TpmModelList *head = NULL, *prev = NULL, *cur_item; for (i = 0; i < TPM_MODEL__MAX; i++) { if (!tpm_model_is_registered(i)) { continue; } cur_item = g_new0(TpmModelList, 1); cur_item->value = i; if (prev) { prev->next = cur_item; } if (!head) { head = cur_item; } prev = cur_item; } return head; }