summaryrefslogtreecommitdiffstats
path: root/cvp/3rd_party/static/testapi-ui/components
diff options
context:
space:
mode:
Diffstat (limited to 'cvp/3rd_party/static/testapi-ui/components')
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/about/about.html11
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/about/aboutController.js53
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/about/templates/README.html131
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/application/application.html348
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/application/applicationController.js177
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/application/logo-request1417
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html43
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/auth-failure/authFailureController.js33
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/auth/authPortal.html21
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/directory/directory.html34
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/directory/directoryController.js44
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/guidelines/data/danube.json590
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/guidelines/data/gen.py16
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/guidelines/data/mandatory.json248
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/guidelines/guidelines.html70
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/guidelines/guidelinesController.js188
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/guidelines/partials/guidelineDetails.html90
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/guidelines/partials/testListModal.html46
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/home/home.html142
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/home/homeController.js58
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/logout/logout.html1
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/logout/logoutController.js44
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html27
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/profile/profile.html40
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/profile/profileController.js219
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/profile/showPubKeyModal.html11
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results-report/data/testcases.json509
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results-report/partials/editTestModal.html65
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results-report/partials/fullTestListModal.html13
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html52
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results-report/resultsReport.html45
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js247
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results/modal/sharedModal.html19
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results/results.html106
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/results/resultsController.js515
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/sut/sut.html42
-rw-r--r--cvp/3rd_party/static/testapi-ui/components/sut/sutController.js48
37 files changed, 0 insertions, 5763 deletions
diff --git a/cvp/3rd_party/static/testapi-ui/components/about/about.html b/cvp/3rd_party/static/testapi-ui/components/about/about.html
deleted file mode 100644
index f356050c..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/about/about.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<hr>
-<div class="about-sidebar">
- <a><div class="about-option"
- ng-click="ctrl.selectOption('about')"
- ng-class="{ 'about-active': ctrl.selected === 'about' }">
- About CVP
- </div></a>
-</div>
-<div class="about-content">
- <div ng-include src="ctrl.template"></div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/about/aboutController.js b/cvp/3rd_party/static/testapi-ui/components/about/aboutController.js
deleted file mode 100644
index b0e36015..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/about/aboutController.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('AboutController', AboutController);
-
- AboutController.$inject = ['$location'];
-
- /**
- * RefStack About Controller
- * This controller handles the about page and the multiple templates
- * associated to the page.
- */
- function AboutController($location) {
- var ctrl = this;
-
- ctrl.selectOption = selectOption;
-
- ctrl.options = {
- 'about' : {
- 'title': 'About CVP',
- 'template': 'testapi-ui/components/about/templates/README.html',
- 'order': 1
- }
- };
-
- /**
- * Given an option key, mark it as selected and set the corresponding
- * template and URL hash.
- */
- function selectOption(key) {
- ctrl.selected = key;
- ctrl.template = ctrl.options[key].template;
- }
-
- ctrl.selectOption('about');
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/about/templates/README.html b/cvp/3rd_party/static/testapi-ui/components/about/templates/README.html
deleted file mode 100644
index cb4140e4..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/about/templates/README.html
+++ /dev/null
@@ -1,131 +0,0 @@
-<h2>Executive Summary</h2>
-<p>OPNFV® is offering OPNFV compliance verification through its Compliance Verification Program (CVP). The CVP verifies products (“Offerings”) that claim compliance to OPNFV.</p>
-<p>The OPNFV CVP is a compliance verification program intended to increase the awareness and adoption of OPNFV by demonstrating the readiness and availability of commercial products based on OPNFV. </p>
-<p>The key objectives and benefits of the OPNFV CVP are to:</p>
-<ul>
- <li>Help build the market for </li>
- <ul>
- <li>OPNFV-based infrastructure</li>
- <li>applications designed to run on that infrastructure</li>
- </ul>
- <li>Reduce adoption risks for end-users</li>
- <li>Decrease testing costs by verifying hardware and software platform interfaces and components </li>
- <li>Enhance interoperability</li>
-</ul>
- <p>Verified products submitted by respective vendors are expected to differentiate themselves with different features and capabilities but remain compliant by implementing explicitly defined interfaces, behaviors, and key features.</p>
-<h3>Purpose of This Document</h3>
-<p>This document defines the framework and governance of the OPNFV CVP, including the scope and objectives of the program, maintenance of program materials, compliance verification requirements and processes, trademark/logo usage guidelines, requirements for systems under compliance verification, and escalation procedures. </p>
-This document does not define compliance verification procedures. Compliance verification procedures are defined by the community under the oversight of the Technical Steering Committee.
-<p>The current scope of compliance verification is based on multiple sources: </p>
-<ul>
- <li>The latest release of OPNFV </li>
- <li>Informative ETSI NFV ISG specifications, specifically:</li>
- <ul>
-
- <li>Pre-deployment Testing: Report on Validation of NFV Environments and Services <a href="http://www.etsi.org/deliver/etsi_gs/NFV-TST/001_099/001/01.01.01_60/gs_NFV-TST001v010101p.pdf">http://www.etsi.org/deliver/etsi_gs/NFV-TST/001_099/001/01.01.01_60/gs_NFV-TST001v010101p.pdf</a></li>
- </ul>
-</ul>
-<p>Please note that these sources are subject to further revisions and may be updated at some future time. The current compliance verification procedures are published by OPNFV.</p>
-
-
-
-
-<h2>Program Management & Maintenance</h2>
-
-<h3>Role of C&C Committee</h3>
-<p>The OPNFV Certification & Compliance (C&C) Committee, hereafter referred to as the Committee, serves as the CVP administrator on behalf of the OPNFV Board of Directors. The Committee is responsible for defining program governance, compliance verification strategy, and the overall scope of the compliance verification procedures. </p>
-<h3>Maintenance of Program Documents</h3>
-<p>Program documents, such as this document, produced by the Committee will be labeled using semantic versioning. That is, they will be labeled using MAJOR.MINOR.PATCH notation, where MAJOR, MINOR, and PATCH are non-negative integers.</p>
-<p>1.MAJOR version. Note: to avoid market confusion, the scope of compliance verification and other project documents is tied to the major version, and once approved by the Board of Directors, will not change until the next major release.</p>
-<p>2.MINOR version is used to denote significant functionality changes (e.g., addition/subtraction of compliance verification procedures and/or document sections). Changes to a minor version of an approved document require Board approval. It is a goal that minor changes should not affect the ability of a product to achieve compliance/qualification status.</p>
-<p>3.PATCH version is used to indicate error corrections or editorial changes.</p>
-<p>The scope of a particular version of the CVP requirements, test-cases, compliance verification checks, tools and results is tied to an OPNFV release. </p>
-
-<h3>Maintenance of CVP compliance verification procedures</h3>
-<p>The overall CVP compliance verification scope tied to an OPNFV release is determined by the Committee. The OPNFV TSC defines and maintains the compliance verification procedures and associated tools. The scope is constrained to features, capabilities, components, and interfaces included in an OPNFV release that are generally available in the industry (e.g., through adoption by an upstream community). Compliance verification is evaluated using functional tests that focus on defined interfaces and/or behaviors without regard to the underlying system under test. In practice, testing exercises interfaces and/or behaviors developed or exposed by OPNFV. </p>
-
-<h3>OPNFV Trademark/Logo Usage Guidelines</h3>
-
-<p>Because of its position in the industry as an Open Source Project maintained by the Linux Foundation, OPNFV cannot endorse any products or appear to endorse any products.</p>
-
-<h3>Use of the Term OPNFV Ready</h3>
-<p>Products that pass the CVP compliance verification suite may be labeled as “OPNFV Ready”. Products that are “OPNFV Ready” expose key features/behaviors of the OPNFV release.</p>
-<ul>
- <li>OPNFV Ready” asserts that a specific system under test</li>
- <ul>
- <li>Supply the key behaviors, functions, and related APIs of the OPNFV release</li>
- <li>Promotes the key values of the OPNFV release, e.g. based upon the open source project components that comprise the OPNFV release</li>
- <li>Performs basic NFV functions</li>
- <li>Is interoperable with the OPNFV release</li>
- <li>Suitable for further trials in an operator network</li>
- </ul>
- <li>OPNFV Ready” does not assert:</li>
- <ul>
- <li>Readiness for commercial deployment</li>
- </ul>
-</ul>
-
-<p>The OPNFV C&C Committee on behalf of the Board of Directors can award a product “OPNFV Ready” status. “OPNFV Ready”, therefore, may not be used in relation to a vendor’s product without first having met the requirements outlined in this document. </p>
-<p>Use of “Ready” must be used in conjunction with the OPNFV release name under which the product was verified (e.g., “OPNFV Colorado Ready”). This allows the OPNFV compliance/qualification standard to evolve over time as the OPNFV platform matures.</p>
-<p>Organizations applying for compliance verification shall use the Logo/Trademark solely for the Product/Technology that was verified to have met the requirements designated by The Committee with respect to the appropriate category. </p>
-They shall not use the Logo/Trademark for any product/technology other than the Product/Technology submitted for compliance verification even if it belongs to the appropriate category.
-<p>They shall only use the Logo/Trademark solely for the following purposes in order to: </p>
-
-<ul>
- <li>promote OPNFV; </li>
- <li>indicate to procurers and users the information of interoperability for NFV infrastructure and applications; and </li>
- <li>indicate that the verified product meets all requirements set by the Committee for use of the Logo/Trademark. </li>
-</ul>
-<p>Organizations shall not use the Logo/Trademark in any way that would associate it with any individual or company logo or brand, beyond the association to the specific platform to which it was awarded. </p>
-
-<p>They shall use the Logo/Trademark solely in accordance with the OPNFV Logo Style Guide which is prepared and amended by the Committee from time to time. Other than in association to the specific platform to which it was awarded, they shall not frame, post, upload, transmit or modify in any way, all or any part of the Logo, unless expressly authorized in writing by the Committee. </p>
-<p></p>
-<p>Organizations shall immediately notify the Committee if they suspect or discover that the Logo/Trademark is or will be used for any purposes other than the confirmed purposes or that the use conflicts with any of the representations hereof as a result of upgrading of its submitted product/technology. In the event that the above notification is provided, they shall provide the Committee with any and all information requested by the Committee in relation to the upgrading of the confirmed product/technology and all information in order to confirm the revised product/technology actually meets the requirements designated by the Committee with respect to the appropriate category. They shall not use the Logo/Trademark for any product/technology which does not meet the requirements designated by the Committee with respect to the confirmed category. </p>
-<p>Note: Such organizations will be held responsible for any illegal use of the Logo/Trademark by others. </p>
-<p>Organizations participating in the OPNFV CVP do not own any intellectual property rights in relation to the Logo/Trademark, program documents, or compliance verification procedures.</p>
-
-
-<h2>Compliance Verification & Application Requirements </h2>
-<h3>Compliance Verification Procedures Requirements</h3>
-<p>CVP compliance verification procedures leverage tests, compliance verification tools, test infrastructure and compliance verification program infrastructure defined and maintained by OPNFV projects which are included in an OPNFV release. The OPNFV TSC defines which compliance verification procedures are included as part of the CVP. Once published, the compliance verification procedure suites will not change until the next OPNFV release (except to fix bugs or errors), as described above.</p>
-<p>OPNFV compliance verification is applicable to one or more of the following categories:</p>
-<ul>
- <li>1) Hardware Platform</li>
- <li>2) Software Platform (e.g, Virtual Infrastructure – NFVI, VIM, etc.)</li>
- <li>3) Applications (e.g., VNFs) </li>
- <li>4) Orchestration (End to End management)</li>
-</ul>
-<p>The scope of the criteria and requirements for each CVP release is set forth in an addendum to this document.</p>
-
-<h3>Self-Compliance Verification</h3>
-<p>Organizations may conduct compliance verification using the OPNFV-designated tools at their facilities. The OPNFV-designated tools will ensure that the results were produced by an unaltered version of the tools, and that the results were unaltered. For example, this could be accomplished by digitally verifying the tools themselves, and signing the results file(s). Results MUST be submitted for review with application documentation and the logo usage agreement to OPNFV.</p>
-
-<h3>OPNFV Preferred Verification Labs</h3>
-<p>Vendors may request service from third parties to conduct OPNFV compliance verification and collect results. Compliance verification occurs as documented in “Self Compliance Verification” above. The compliance verification results and documentation may be submitted by the third party on behalf of the vendor requesting the use of an OPNFV Logo/Trademark.</p>
-<p>OPNFV may identify organizations providing third-party verification as Preferred Labs and list them on the OPNFV web site. OPNFV does not endorse or sponsor Preferred Labs’ services. Vendors are not required to use OPNFV Preferred Labs.</p>
-
-<h3>Compliance Application Requirements</h3>
-<p>The use of the OPNFV Ready logo is not restricted to OPNFV member companies. The request for use of an OPNFV Logo/Trademark must state the organization, a contact person (email and telephone number); their postal address; the location where the verification results and documentation was prepared, the category or categories the product is requesting an OPNFV Logo/Trademark(s) for; the attestation stating they will abide by OPNFV policies and procedures for use of an OPNFV Logo/Trademark; any third-party lab conducting the verification; and the product identifier.</p>
-
-<h3>Review Process</h3>
-<p>The compliance verification results and documentation submitted will be reviewed by the Committee for completeness and validity. Based on the determination of the Committee, a recommendation will be made to the OPNFV Board of Directors regarding the approval of the granting of permission to use an OPNFV Logo/Trademark.</p>
-<p>The Committee may request additional information regarding the application for use of an OPNFV Logo/Trademark.</p>
-<p>OPNFV may charge a reasonable fee for reviewing results. Reviews will be conducted by OPNFV member companies participating in the review committee (a C&C subcommittee). No member company may review its own compliance verification results.</p>
-<p>In the event of a dispute, the submitting organization has a right to appeal the decision with the OPNFV Board of Directors. An appeals process is documented in the Escalation Process below.</p>
-
-<h2>System Under Compliance Verification Requirements</h2>
-<p>The compliance verification environment (hardware and software) is defined by the OPNFV TSC.</p>
-
-<h3>Similarity Policy</h3>
-
-<p>Hardware platforms identified as similar to platforms that have passed CVP compliance verification procedures may apply to use the OPNFV Ready trademark. The C&C Committee can decide to grant “OPNFV Ready” to products designated “under similarity”. The Committee will consider similarity in the following areas (for example):</p>
-<ul>
- <li>Compute</li>
- <li>Network</li>
- <li>Storage</li>
-</ul>
-<p>Hardware platforms receiving rights to use the Logo/Trademark “under similarity” will be so designated on the website.</p>
-
-<h2>Escalation Process</h2>
-<p>If, after submitting compliance verification results and documentation, a vendor believes its results were evaluated unfairly or if it identifies issues with the test plan, tools, or third party lab, it may send an appeal in writing to the Committee. The Committee will review the appeal in a reasonable timeframe and respond in writing.</p>
-<p>If the vendor wishes to appeal further, it may send a further appeal in writing to the OPNFV Board of Directors. The Board will evaluate the appeal at its next regular meeting.</p>
diff --git a/cvp/3rd_party/static/testapi-ui/components/application/application.html b/cvp/3rd_party/static/testapi-ui/components/application/application.html
deleted file mode 100644
index 17b17c68..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/application/application.html
+++ /dev/null
@@ -1,348 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
- <meta charset="utf-8">
- <title>Logo Request &raquo; OpenStack Open Source Cloud Computing Software</title>
-
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
-
-<link rel="stylesheet" href="testapi-ui/assets/css/combine.css" />
-<body id="logo-request">
-
-
-<div class="container-fluid common-main-container">
-<div class="top-site-banner">
- <div class="container">
- <p>
- <p class="p1">Complete this application then start your CVP journey</p>
- <!--
- <a href="https://www.openstack.org/summit/sydney-2017/" class="top-site-banner-button">Register now</a>
- -->
- </p>
- </div>
-</div>
-
-<div class="row" style="margin-top:20px">
- <div class="col-lg-12 container">
- <!--
- <h1>Request information on OpenStack trademark licensing</h1>
- <p>If you plan to offer an OpenStack-related product or service using a trademark or brand that includes an OpenStack mark (e.g. logo or the word OpenStack), you are required to apply for and obtain a trademark license. We@~Yve created a family of logos and a set of standards specifically for this pp
-urpose. Once we understand more about your product or service, we can determine which (if any) logo program it falls under, and send you the appropriate license for signature. </p>
- -->
- <form id="OsLogoProgramForm_Form" action="/brand/logo-request/Form" method="post" enctype="application/x-www-form-urlencoded">
- <p id="OsLogoProgramForm_Form_error" class="message " style="display: none"></p>
- <fieldset>
- <div class="field text col-md-4">
- <label class="left" >Organization name</label>
- <i uib-tooltip="Organization name" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.organization_name" required="required" aria-required="true" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Organization website (if public)</label>
- <i uib-tooltip="Organization website if it is public" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.organization_web" required="required" aria-required="true" />
- </div>
- </div>
- <div class="col-md-4"></div>
- <div class="field email text col-md-4">
- <label class="left">Product name and/or identifier</label>
- <i uib-tooltip="Product name and/or identifier" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <input type="text" class="email text form-control" ng-model="ctrl.product_name" required="required" aria-required="true" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Product specifications</label>
- <i uib-tooltip="A link of product specifications" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.product_spec" required="required" aria-required="true" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Product public documentation</label>
- <i uib-tooltip="A link of product public documentation" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.product_documentation" required="required" aria-required="true" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Product categories</label>
- <i uib-tooltip="Product categories" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <select class="form-control" ng-model="ctrl.product_categories">
- <option value="soft&hard">software and hardware</option>
- <option value="soft&3rd">software and third party hardware</option>
- </select>
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Primary contact name</label>
- <i uib-tooltip="Primary contact name" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.prim_name" required="required" aria-required="true" />
- </div>
- </div><div class="field text col-md-4">
- <label class="left">Primary business email</label>
- <i uib-tooltip="Only the Business email address should be used for official communication with OPNFV CVP" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.prim_email" required="required" aria-required="true" />
- </div>
- </div><div class="field text col-md-4">
- <label class="left">Primary postal address</label>
- <i uib-tooltip="Primary postal address" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.prim_address" required="required" aria-required="true" />
- </div>
- </div><div class="field text col-md-4">
- <label class="left">Primary phone number</label>
- <i uib-tooltip="Primary phone number" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.prim_phone" required="required" aria-required="true" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">User ID Type</label>
- <i uib-tooltip="User ID Type" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <select class="form-control" ng-model="ctrl.id_type">
- <option value="Linux Foundation">Linux Foundation</option>
- <option value="Openstack">Openstack</option>
- <option value="Github">Github</option>
- <option value="Google">Google</option>
- <option value="Fackbook">Fackbook</option>
- </select>
- </div>
- </div>
-
- <div class="field text col-md-4">
- <label class="left">User ID for CVP web portal</label>
- <i uib-tooltip="User ID for CVP web portal" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.user_id" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Description</label>
- <i uib-tooltip="Product Description" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.description" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">SUT Version</label>
- <i uib-tooltip="SUT Version" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.sut_version" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">SUT HW Version</label>
- <i uib-tooltip="SUT HW Version - leave blank if not applicable" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.sut_hw_version" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">OVP Version</label>
- <i uib-tooltip="OVP Version" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.ovp_version" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">OVP Category</label>
- <i uib-tooltip="OVP Category" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.ovp_category" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Company Logo</label>
- <i uib-tooltip="Company Logo" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.company_logo" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Approve Date</label>
- <i uib-tooltip="Approve Date - YYYY-MM-DD" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.approve_date" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Approved</label>
- <i uib-tooltip="Approved - insert true or false" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.approved" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Test ID</label>
- <i uib-tooltip="Test ID - enter approved test_id" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <input type="text" class="text form-control" ng-model="ctrl.test_id" />
- </div>
- </div>
- <div class="field text col-md-4">
- <label class="left">Location</label>
- <i uib-tooltip="Location" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
- <div class="middleColumn">
- <select class="form-control" ng-model="ctrl.lab_location">
- <option value="internal">internal vendor lab</option>
- <option value="third">third-party lab</option>
- </select>
- </div>
- </div>
- <div ng-if="ctrl.lab_location=='third'" class="field text">
- <div class="field text col-md-4">
- <label class="left">Lab Name</label>
- <i uib-tooltip="Lab Name" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<input type="text" class="text form-control" ng-model="ctrl.lab_name"/>
- </div>
- <div class="field text col-md-4">
- <label class="left">Lab Email</label>
- <i uib-tooltip="Lab Email" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<input type="text" class="text form-control" ng-model="ctrl.lab_email"/>
- </div>
- <div class="field text col-md-4">
- <label class="left">Lab Address</label>
- <i uib-tooltip="Lab Address" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<input type="text" class="text form-control" ng-model="ctrl.lab_address"/>
- </div>
- <div class="field text col-md-4">
- <label class="left">Lab Phone Number</label>
- <i uib-tooltip="Lab Phone Number" class="glyphicon glyphicon-question-sign opnfv-blue"></i>
-<input type="text" class="text form-control" ng-model="ctrl.lab_phone"/>
- </div>
- </div>
- </fieldset>
- </form>
- </div>
-</div>
-<div class="Actions">
- <button class="btn btn-success cvp-btn" ng-click="ctrl.openConfirmModal()">Submit</button>
-</div>
-<div class="results-table" style="margin-top:30px;overflow:scroll">
- <table class="table table-striped table-hover">
- <thead>
- <tr>
- <th>Create Date</th>
- <th>Organization name</th>
- <th>Organization website</th>
- <th>Product name</th>
- <th>Product specifications</th>
- <th>Product documentation</th>
- <th>Product categories</th>
- <th>Primary contact name</th>
- <th>Primary business email</th>
- <th>Primary postal address</th>
- <th>Primary phone number</th>
- <th>User ID Type</th>
- <th>User ID</th>
- <th>Description</th>
- <th>SUT version</th>
- <th>SUT HW version</th>
- <th>OVP version</th>
- <th>OVP category</th>
- <th>Company logo</th>
- <th>Approve date</th>
- <th>Approved</th>
- <th>Test ID</th>
- <th>Location</th>
- <th>Operation</th>
- </tr>
- </thead>
- <script type="text/ng-template" id="product.tpl.html">
- <div class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
- <input type="text" value="{{app.product_spec}}">
- </div>
- <div class="input-group">
- <span class="input-group-addon">@</span>
- <input type="text" value="{{app.product_documentation}}">
- </div>
- <div class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-map-marker"></i></span>
- <input type="text" value="{{app.product_categories | category}}">
- </div>
- </script>
- <script type="text/ng-template" id="lab.tpl.html">
- <div class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
- <input type="text" value="{{app.lab_name}}">
- </div>
- <div class="input-group">
- <span class="input-group-addon">@</span>
- <input type="text" value="{{app.lab_email}}">
- </div>
- <div class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-map-marker"></i></span>
- <input type="text" value="{{app.lab_address}}">
- </div>
- <div class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-phone"></i></span>
- <input type="text" value="{{app.lab_phone}}">
- </div>
- </script>
- <tbody style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
- <tr ng-repeat="app in ctrl.applications">
- <td>{{ app.creation_date | limitTo: 10 }}</td>
- <td>{{ app.organization_name }}</td>
- <td><a href="{{app.organization_web}}">{{ app.organization_web }}</a></td>
- <td>{{ app.product_name}}</td>
- <td><a href="{{app.product_spec}}">{{app.product_spec}}</a></td>
- <td><a href="{{app.product_documentation}}">{{app.product_documentation}}</a></td>
- <td>{{ app.product_categories | category }}</td>
- <td>{{ app.prim_name }}</td>
- <td>{{ app.prim_email }}</td>
- <td>{{ app.prim_address }}</td>
- <td>{{ app.prim_phone }}</td>
- <td>{{ app.id_type }}</td>
- <td>{{ app.user_id }}</td>
- <td>{{ app.description }}</td>
- <td>{{ app.sut_version }}</td>
- <td>{{ app.sut_hw_version }}</td>
- <td>{{ app.ovp_version }}</td>
- <td>{{ app.ovp_category }}</td>
- <td>{{ app.company_logo }}</td>
- <td>{{ app.approve_date }}</td>
- <td>{{ app.approved }}</td>
- <td>{{ app.test_id }}</td>
- <td><span popover-enable="app.lab_location != 'internal'" uib-popover-template="ctrl.lab_tpl" popover-title="Lab Info" popover-placement="top" popover-trigger="mouseenter">{{ app.lab_location | labLocation}}</span><i ng-if="app.lab_location != 'internal'" class="glyphicon glyphicon-info-sign opnfv-blue"></i></td>
- <td><a ng-click="ctrl.deleteApp(app._id)" class="badge badge-info"><i class="glyphicon glyphicon-remove" ></i></a></td>
- </tr>
- </tbody>
- </table>
-
- <div class="pages">
- <uib-pagination
- total-items="ctrl.totalItems"
- ng-model="ctrl.currentPage"
- items-per-page="ctrl.itemsPerPage"
- max-size="ctrl.maxSize"
- class="pagination-sm"
- boundary-links="true"
- rotate="false"
- num-pages="ctrl.numPages"
- ng-change="ctrl.updatePage()">
- </uib-pagination>
- </div>
-</div>
-
-<div>
- <br>
- <h3>Company Logo Upload for Directory</h3>
- <form enctype="multipart/form-data" method="post">
- <div class="form-group col-m-3">
- <input class="form-contrl btn btn-success cvp-btn medium accent-color regular-button" file-model="logoFile" type="file">
- </div>
- <div class="form-group col-m-3">
- <a class="btn btn-success cvp-btn medium accent-color regular-button" ng-click="ctrl.uploadLogo()"><span>Upload Logo</span></a>
- </div>
- </form>
-</div>
-
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/application/applicationController.js b/cvp/3rd_party/static/testapi-ui/components/application/applicationController.js
deleted file mode 100644
index 5666ff23..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/application/applicationController.js
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('ApplicationController', ApplicationController);
-
- ApplicationController.$inject = [
- '$http', '$stateParams', '$window', '$sce',
- '$uibModal', 'testapiApiUrl', 'raiseAlert', 'ngDialog', '$scope'
- ];
-
- /**
- */
- function ApplicationController($http, $stateParams, $window, $sce,
- $uibModal, testapiApiUrl, raiseAlert, ngDialog, $scope) {
-
- var ctrl = this;
- ctrl.uploadLogo=uploadLogo;
-
- function init(){
- ctrl.organization_name = null;
- ctrl.organization_web = null;
- ctrl.product_name = null;
- ctrl.product_spec = null;
- ctrl.product_documentation = null;
- ctrl.product_categories = "soft&hard";
- ctrl.prim_name = null;
- ctrl.prim_email = null;
- ctrl.prim_address = null;
- ctrl.prim_phone = null;
- ctrl.id_type = "Linux Foundation";
- ctrl.user_id = null;
- ctrl.description = null;
- ctrl.sut_version = null;
- ctrl.sut_hw_version = null;
- ctrl.ovp_version = "2018.01";
- ctrl.ovp_category = "Infrastructure";
- ctrl.company_logo = null;
- ctrl.approve_date = null;
- ctrl.approved = "false";
- ctrl.test_id = null;
- ctrl.lab_location="internal";
- ctrl.lab_name = null;
- ctrl.lab_email=null;
- ctrl.lab_address=null;
- ctrl.lab_phone=null;
- ctrl.applications = [];
- ctrl.showApplications = [];
-
- ctrl.totalItems = null;
- ctrl.currentPage = 1;
- ctrl.itemsPerPage = 5;
- ctrl.numPages = null;
- ctrl.lab_tpl = "lab.tpl.html";
- ctrl.product_tpl = "product.tpl.html";
- //ctrl.lab_html=$sce.trustAsHtml('<div>{{app.lab_email}}</div><div>{{app.lab_address}}</div><div>{{app.lab_phone}}</div>');
-
- getApplication();
- }
-
-
- ctrl.submitForm = function(){
- var data = {
- "organization_name": ctrl.organization_name,
- "organization_web": ctrl.organization_web,
- "product_name": ctrl.product_name,
- "product_spec": ctrl.product_spec,
- "product_documentation": ctrl.product_documentation,
- "product_categories": ctrl.product_categories,
- "prim_name": ctrl.prim_name,
- "prim_email": ctrl.prim_email,
- "prim_address": ctrl.prim_address,
- "prim_phone": ctrl.prim_phone,
- "id_type": ctrl.id_type,
- "user_id": ctrl.user_id,
- "description": ctrl.description,
- "sut_version": ctrl.sut_version,
- "sut_hw_version": ctrl.sut_hw_version,
- "ovp_version": ctrl.ovp_version,
- "ovp_category": ctrl.ovp_category,
- "company_logo": ctrl.company_logo,
- "approve_date": ctrl.approve_date,
- "approved": ctrl.approved,
- "test_id": ctrl.test_id,
- "lab_location": ctrl.lab_location,
- "lab_email": ctrl.lab_email,
- "lab_address": ctrl.lab_address,
- "lab_phone": ctrl.lab_phone
- };
- console.log(data);
- $http.post(testapiApiUrl + "/cvp/applications", data).then(function(resp){
- if(resp.data.code && resp.data.code != 0) {
- alert(resp.data.msg);
- return;
- }
- getApplication();
- }, function(error){
- });
- }
-
- ctrl.openConfirmModal = function(){
- var resp = confirm("Are you sure to submit?");
- if (resp) {
- ctrl.submitForm();
- }
- }
-
- ctrl.cancelSubmit = function(){
- ngDialog.close();
- }
-
- ctrl.updatePage = function(){
- getApplication();
- }
-
- ctrl.deleteApp = function(id){
- var resp = confirm('Are you sure to delete this application?');
- if (!resp)
- return;
-
- var delUrl = testapiApiUrl + "/cvp/applications/" + id;
- $http.delete(delUrl)
- .then( function(ret) {
- if(ret.data.code && ret.data.code != 0) {
- alert(ret.data.msg);
- return;
- }
- getApplication();
- });
- }
-
- function uploadLogo(){
- var file = $scope.logoFile;
- var fd = new FormData();
- fd.append('file', file);
-
- $http.post(testapiApiUrl + "/cvp/applications/uploadlogo", fd, {
- transformRequest: angular.identity,
- headers: {'Content-Type': undefined}
- }).then(function(resp){
- if(resp.data.code && resp.data.code != 0) {
- alert(resp.data.msg);
- return;
- }
- }, function(error){
- });
-
- };
-
- function getApplication(){
- $http.get(testapiApiUrl + "/cvp/applications?page="+ctrl.currentPage+"&signed&per_page="+ctrl.itemsPerPage).then(function(response){
- ctrl.applications = response.data.applications;
- ctrl.totalItems = response.data.pagination.total_pages* ctrl.itemsPerPage;
- ctrl.currentPage = response.data.pagination.current_page;
- ctrl.numPages = response.data.pagination.total_pages;
- }, function(error){
- });
- }
-
- init();
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/application/logo-request b/cvp/3rd_party/static/testapi-ui/components/application/logo-request
deleted file mode 100644
index c7bb109d..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/application/logo-request
+++ /dev/null
@@ -1,1417 +0,0 @@
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
-
-<html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="globalsign-domain-verification" content="tWFOHNAA_WMHmHfBMq38uTgupHFugV_dZ2rqyRxNMx" />
- <title>Logo Request &raquo; OpenStack Open Source Cloud Computing Software</title>
-
- <meta name="generator" content="SilverStripe - http://silverstripe.org" />
-<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
-<meta property="og:title" content="Logo Request &amp;raquo; OpenStack Open Source Cloud Computing Software" />
-<meta property="og:type" content="website" />
-<meta property="og:url" content="https://www.openstack.org/brand/logo-request/" />
-<link rel="image_src" href="https://www.openstack.org/themes/openstack/images/openstack-logo-full.png" type="image/png"/>
-<meta property="og:image" content="http://www.openstack.org/themes/openstack/images/openstack-logo-full.png" />
-<meta property="og:image:secure_url" content="https://www.openstack.org/themes/openstack/images/openstack-logo-full.png" />
-<meta property="og:image:type" content="image/png" />
-<meta property="og:description" content="If you plan to offer an OpenStack-related product or service using a trademark or brand that includes an OpenStack mark (e.g. logo or the word OpenStack), you are required to apply for and obtain a trademark license. We’ve created a family of logos and a set of standards specifically for this purpose. Once we understand more about your product or service, we can determine which (if any) logo program it falls under, and send you the appropriate license for signature.  " />
-<meta property="og:site_name" content="OpenStack" />
-<meta property="og:locale" content="en_US" />
-<meta property="fb:app_id" content="209869746011654" />
-<meta name="twitter:card" content="summary" />
-<meta name="twitter:site" content="@openstack" />
-
-
- <base href="https://www.openstack.org/"><!--[if lte IE 6]></base><![endif]-->
-
- <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="https://www.openstack.org/blog/feed/"/>
- <link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
- <link rel="icon" type="image/png" href="/favicon/favicon-32x32.png" sizes="32x32">
- <link rel="icon" type="image/png" href="/favicon/favicon-16x16.png" sizes="16x16">
- <link rel="manifest" href="/favicon/manifest.json">
- <link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
-
-
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!--[if lt IE 9]>
- <script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
- <script src="//oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
-
- <script type="text/javascript">
-
-// Used to record outbound links before the browser resets to the new site
-
-function recordOutboundLink(link, category, action) {
- try {
- ga('send', 'event', {
- eventCategory: category,
- eventAction: 'click',
- eventLabel: link.href
- });
- setTimeout('document.location = "' + link.href + '"', 100)
- }
- catch(err){}
-}
-
-</script>
-
-<script>
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
- ga('create', 'UA-17511903-1', 'auto');
- ga('send', 'pageview');
-
-</script>
-
- <script type="text/javascript">
- _linkedin_data_partner_id = "36268";
-</script><script type="text/javascript">
- (function(){var s = document.getElementsByTagName("script")[0];
- var b = document.createElement("script");
- b.type = "text/javascript";b.async = true;
- b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
- s.parentNode.insertBefore(b, s);})();
-</script>
- <link rel="stylesheet" type="text/css" href="/themes/openstack/css/bootstrap.min.css?m=1503597172" />
-<link rel="stylesheet" type="text/css" href="/themes/openstack/bower_assets/fontawesome/css/font-awesome.min.css?m=1502291691" />
-<link rel="stylesheet" type="text/css" href="/themes/openstack/css/combined.css?m=1503597172" />
-<link rel="stylesheet" type="text/css" href="/themes/openstack/css/navigation_menu.css?m=1503597172" />
-<link rel="stylesheet" type="text/css" href="/themes/openstack/css/dropdown.css?m=1503597172" />
-<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" />
-<link rel="stylesheet" type="text/css" href="/framework/css/CheckboxSetField.css?m=1462921760" />
-<style type="text/css">
-.honey {
- position: absolute; left: -9999px
-}
-</style>
-</head>
-
- <body id="logo-request">
-
-
-<!-- Top Site Banner -->
-<div class="top-site-banner">
- <div class="container">
- <p>
- <p class="p1">Join the global OpenStack community for use cases &amp; training at the OpenStack Summit Sydney, November 6-8 &nbsp; &nbsp;
- <a href="https://www.openstack.org/summit/sydney-2017/" class="top-site-banner-button">Register now</a>
- </p>
- </div>
-</div>
-<!-- End Site Banner -->
-
- <nav class="navbar navbar-default" role="navigation">
-
- <div class="container">
- <!-- Brand and toggle get grouped for better mobile display -->
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <div class="brand-wrapper">
- <a class="navbar-brand" href="/"></a>
- </div>
- <div class="search-icon show"><i class="fa fa-search"></i> <span class="header-search-text">Search</span></div>
- </div>
- <!-- Collect the nav links, forms, and other content for toggling -->
- <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
- <div class="search-container tiny">
-
-<input type="text" class="st-default-search-input custom-search-box" placeholder="Search OpenStack">
-
-<script type="text/javascript" src="/themes/openstack/javascript/jquery.min.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/jquery-migrate-1.2.1.min.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/jquery.cookie.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/querystring.jquery.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/shadowbox/shadowbox.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/jquery.ticker.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/jquery.tools.min.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/jcarousellite.min.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/navigation.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/filetracking.jquery.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/updateProfileModal.js?m=1503597172"></script><script type="text/javascript" src="/themes/openstack/javascript/bootstrap.min.js?m=1503597172"></script><script type="text/javascript">//<![CDATA[
-jQuery(document).ready(function($) {
-
- var d = new Date();
- var user_date = d.getFullYear()+'-'+(d.getMonth()+1)+'-'+d.getDate();
- $.cookie('user_date',user_date , { expires: 360, path: '/' });
-
- $('body').filetracking();
-
- $(document).on("click", ".outbound-link", function(event){
- var href = $(this).attr('href');
- recordOutboundLink(this,'Outbound Links',href);
- event.preventDefault();
- event.stopPropagation()
- return false;
- });
-
- var use_shadow_box = false;
- if(use_shadow_box)
- Shadowbox.init();
-});
-
-//]]></script><script type="text/javascript">//<![CDATA[
-
- jQuery(document).ready(function() {
-
- if($('#OsLogoProgramForm_Form_CurrentSponsor').prop('checked') != true){
- $('#openstack-companies').hide();
- $('#non-sponsor-company').show();
- } else {
- $('#openstack-companies').show();
- $('#non-sponsor-company').hide();
- }
-
- $('#OsLogoProgramForm_Form_CurrentSponsor').click(function () {
- $('#openstack-companies').toggle();
- $('#non-sponsor-company').toggle();
- });
- });
-
-
-//]]></script><script type="text/javascript">
- (function(w,d,t,u,n,s,e){w['SwiftypeObject']=n;w[n]=w[n]||function(){
- (w[n].q=w[n].q||[]).push(arguments);};s=d.createElement(t);
- e=d.getElementsByTagName(t)[0];s.async=1;s.src=u;e.parentNode.insertBefore(s,e);
- })(window,document,'script','//s.swiftypecdn.com/install/v2/st.js','_st');
-
- _st('install','aDn5L_vgZ2yzRcE893kK','2.0.0');
-</script>
- <i class="fa fa-times close-search"></i>
- </div>
- <ul class="nav navbar-nav navbar-main show">
- <li>
- <input type="text" class="st-default-search-input custom-search-box-mobile" placeholder="Search OpenStack">
-
- </li>
-
- <li>
- <a href="https://www.openstack.org/software/" class="drop" id="dropdownMenuSoftware">Software <i class="fa fa-caret-down"></i></a><i class="mobile-expand"></i>
- <ul class="dropdown-menu dropdown-hover" role="menu" aria-labelledby="dropdownMenuSoftware">
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/">Overview</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/project-navigator/">Project Navigator</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/sample-configs/">Sample Configs</a></li>
- <li role="presentation" class="divider"></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/security/">Security</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/start/">Get Started</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/roadmap/">Roadmap</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/latest-release/">Latest Release</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/software/sourcecode/">Source Code</a></li>
- </ul>
-</li>
-<li>
- <a href="https://www.openstack.org/user-stories/" class="drop" id="dropdownMenuUsers">Users <i class="fa fa-caret-down"></i></a><i class="mobile-expand"></i>
- <ul class="dropdown-menu dropdown-hover" role="menu" aria-labelledby="dropdownMenuUsers">
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/user-stories/">Overview</a></li>
- <li role="presentation" class="divider"></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/edge/">Edge Computing</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/telecoms-and-nfv/">Telecom & NFV</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/enterprise/">OpenStack in the Enterprise</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/science/">OpenStack in Science</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/containers/">Containers</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="http://superuser.openstack.org/">Superuser Magazine</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/surveys/landing">User Survey</a></li>
- </ul>
-</li>
-<li>
- <a href="https://www.openstack.org/community/" class="drop" id="dropdownMenuCommunity">Community <i class="fa fa-caret-down"></i></a><i class="mobile-expand"></i>
- <ul class="dropdown-menu dropdown-hover" role="menu" aria-labelledby="dropdownMenuCommunity">
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/community/">Welcome! Start Here</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/foundation/">OpenStack Foundation</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://wiki.openstack.org">OpenStack Wiki</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="http://groups.openstack.org">User Groups</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/community/speakers/">Speakers Bureau</a></li>
- <li role="presentation" class="divider"></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/foundation/companies/">Supporting Companies</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/community/jobs/">Jobs</a></li>
- <li role="presentation" class="divider"></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/join/">Join The Community</a></li>
- </ul>
-</li>
-<li>
- <a href="https://www.openstack.org/marketplace/">Marketplace</a>
-</li>
-<li>
- <a href="https://www.openstack.org/events/" class="drop" id="dropdownMenuEvents">Events <i class="fa fa-caret-down"></i></a><i class="mobile-expand"></i>
- <ul class="dropdown-menu dropdown-hover" role="menu" aria-labelledby="dropdownMenuEvents">
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/community/events/">Overview</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/summit/">The OpenStack Summit</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/ptg/">Project Teams Gathering</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/community/events/openstackdays">OpenStack Days</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/community/events/openstackhackathons">OpenStack App Hackathons</a></li>
- </ul>
-</li>
-<li>
- <a href="https://www.openstack.org/learn/" class="drop" id="dropdownMenuLearn">Learn <i class="fa fa-caret-down"></i></a><i class="mobile-expand"></i>
- <ul class="dropdown-menu dropdown-hover" role="menu" aria-labelledby="dropdownMenuEvents">
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/marketplace/training/">Training</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/coa/">Get Certified</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://ask.openstack.org">Ask a Technical Question</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="http://superuser.openstack.org">Superuser Magazine</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/videos/">Summit Videos</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/analysts/">Analyst Reports</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/news/">News</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.openstack.org/blog/">Blog</a></li>
- </ul>
-</li>
-<li>
- <a href="http://docs.openstack.org/">Docs</a>
-</li>
-<li>
-
-</li>
-
-
- <li>
-
- <li class="join-nav-section">
- <a href="#" id="dropdownMenuJoin">Join <i class="fa fa-caret-down"></i></a>
- <ul class="dropdown-menu dropdown-hover" role="menu" aria-labelledby="dropdownMenuJoin" style="display: none;">
- <li role="presentation"><a role="menuitem" tabindex="-1" href="/join/register/?membership-type=foundation">Sign up for Foundation Membership</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="/join/#sponsor">Sponsor the Foundation</a></li>
- <li role="presentation"><a role="menuitem" tabindex="-1" href="/foundation">More about the Foundation</a></li>
- </ul>
- </li>
- <li>
- <a href="/Security/login/?BackURL=/brand/logo-request/" class="sign-in-btn">Log In</a>
- </li>
-
- </li>
- </ul>
- </div>
- <!-- /.navbar-collapse -->
-</div>
-<!-- /.container -->
-</nav>
-
-
- <!-- Page Content -->
- <div class="container">
-
- <div class="container">
-
- <div class="row">
- <div class="col-lg-9 col-lg-push-3">
-
-
- <h1>Request information on OpenStack trademark licensing</h1>
-<p>If you plan to offer an OpenStack-related product or service using a trademark or brand that includes an OpenStack mark (e.g. logo or the word OpenStack), you are required to apply for and obtain a trademark license. We’ve created a family of logos and a set of standards specifically for this purpose. Once we understand more about your product or service, we can determine which (if any) logo program it falls under, and send you the appropriate license for signature.  </p>
-
-<form id="OsLogoProgramForm_Form" action="/brand/logo-request/Form" method="post" enctype="application/x-www-form-urlencoded">
-
-
- <p id="OsLogoProgramForm_Form_error" class="message " style="display: none"></p>
-
-
- <fieldset>
-
-
- <div id="FirstName" class="field text">
- <label class="left" for="OsLogoProgramForm_Form_FirstName">First Name</label>
- <div class="middleColumn">
- <input type="text" name="FirstName" class="text form-control" id="OsLogoProgramForm_Form_FirstName" required="required" aria-required="true" />
- </div>
-
-
-
-</div>
-
-
- <div id="Surname" class="field text">
- <label class="left" for="OsLogoProgramForm_Form_Surname">Last Name</label>
- <div class="middleColumn">
- <input type="text" name="Surname" class="text form-control" id="OsLogoProgramForm_Form_Surname" required="required" aria-required="true" />
- </div>
-
-
-
-</div>
-
-
- <div id="Email" class="field email text">
- <label class="left" for="OsLogoProgramForm_Form_Email">Email Address</label>
- <div class="middleColumn">
- <input type="email" name="Email" class="email text form-control" id="OsLogoProgramForm_Form_Email" required="required" aria-required="true" />
- </div>
-
-
-
-</div>
-
-
- <div id="Phone" class="field text">
- <label class="left" for="OsLogoProgramForm_Form_Phone">Phone Number</label>
- <div class="middleColumn">
- <input type="text" name="Phone" class="text form-control" id="OsLogoProgramForm_Form_Phone" required="required" aria-required="true" />
- </div>
-
-
-
-</div>
-
-
- <div id="Program" class="field optionset checkboxset">
- <label class="left">Which logo program best fits your product offering?</label>
- <div class="middleColumn">
- <ul id="OsLogoProgramForm_Form_Program" class="optionset checkboxset" >
-
-
- <li class="odd valPowered">
- <input id="OsLogoProgramForm_Form_Program_Powered" class="checkbox" name="Program[Powered]" type="checkbox" value="Powered" />
- <label for="OsLogoProgramForm_Form_Program_Powered">Powered</label>
- </li>
-
- <li class="even valCompatible">
- <input id="OsLogoProgramForm_Form_Program_Compatible" class="checkbox" name="Program[Compatible]" type="checkbox" value="Compatible" />
- <label for="OsLogoProgramForm_Form_Program_Compatible">Compatible</label>
- </li>
-
- <li class="odd valTraining">
- <input id="OsLogoProgramForm_Form_Program_Training" class="checkbox" name="Program[Training]" type="checkbox" value="Training" />
- <label for="OsLogoProgramForm_Form_Program_Training">Training</label>
- </li>
-
-
-</ul>
- </div>
-
-
-
-</div>
-
-
- <hr/>
-
- <div id="CurrentSponsor" class="field checkbox">
- <input type="checkbox" name="CurrentSponsor" value="1" class="checkbox" id="OsLogoProgramForm_Form_CurrentSponsor" />
- <label class="right" for="OsLogoProgramForm_Form_CurrentSponsor">My company is a Corporate Sponsor or Gold/Platinum Member of the OpenStack Foundation.</label>
-
-
-</div>
-
-
- <div id="openstack-companies">
-
- <div id="CompanyID" class="field dropdown">
- <label class="left" for="OsLogoProgramForm_Form_CompanyID">Company</label>
- <div class="middleColumn">
- <select name="CompanyID" class="dropdown form-control" id="OsLogoProgramForm_Form_CompanyID">
-
- <option value="988">3CX</option>
-
- <option value="961">6WIND</option>
-
- <option value="254">99Cloud Inc.</option>
-
- <option value="864">@IT</option>
-
- <option value="503">A10 Networks</option>
-
- <option value="677">Accelerite</option>
-
- <option value="786">Accenture</option>
-
- <option value="800">Access Alto</option>
-
- <option value="570">AcmeCloud</option>
-
- <option value="752">AeroFS (Air Computing, Inc.)</option>
-
- <option value="928">Agema Systems Inc</option>
-
- <option value="719">Akanda</option>
-
- <option value="959">Alta3 Research</option>
-
- <option value="745">Amax</option>
-
- <option value="683">Anchor</option>
-
- <option value="764">Ansible, Inc</option>
-
- <option value="758">Appcito, Inc</option>
-
- <option value="780">AppFormix</option>
-
- <option value="169">Aptira</option>
-
- <option value="55">Arista Networks</option>
-
- <option value="986">ARM</option>
-
- <option value="941">Arrow Electronics</option>
-
- <option value="183">AT&amp;T</option>
-
- <option value="903">Attivo Networks</option>
-
- <option value="907">ATTO Research</option>
-
- <option value="613">AURO</option>
-
- <option value="320">Avaya</option>
-
- <option value="751">Avni Networks Inc</option>
-
- <option value="954">Award Solutions</option>
-
- <option value="843">AWcloud</option>
-
- <option value="1058">BBVA</option>
-
- <option value="958">Beijing GuoDianTong Network Technology</option>
-
- <option value="912">Beyondsoft Consulting</option>
-
- <option value="916">Biarca</option>
-
- <option value="663">BIOS IT</option>
-
- <option value="1045">Blizzard Entertainment</option>
-
- <option value="667">Bloomberg</option>
-
- <option value="416">Blue Box</option>
-
- <option value="735">Breqwatr</option>
-
- <option value="459">Bright Computing</option>
-
- <option value="74">Brocade</option>
-
- <option value="72">Bull</option>
-
- <option value="849">BusinessIT</option>
-
- <option value="636">c3dna</option>
-
- <option value="322">Canadian Web Hosting</option>
-
- <option value="57">Canonical</option>
-
- <option value="757">Caringo</option>
-
- <option value="348">Cavium</option>
-
- <option value="149">CCAT </option>
-
- <option value="1054">CENGN</option>
-
- <option value="744">Chef</option>
-
- <option value="1006">China Mobile</option>
-
- <option value="1017">China Telecom</option>
-
- <option value="1062">China Unicom</option>
-
- <option value="846">Chinac Corporation</option>
-
- <option value="882">ChinaCloud</option>
-
- <option value="1031">CIO Review</option>
-
- <option value="743">Cirba Inc.</option>
-
- <option value="59">Cisco</option>
-
- <option value="8">Citrix</option>
-
- <option value="695">City Network</option>
-
- <option value="766">Cleversafe</option>
-
- <option value="572">Cliqr</option>
-
- <option value="933">Cloud Computing Taiwan</option>
-
- <option value="740">Cloud Foundry</option>
-
- <option value="687">Cloud&amp;Heat Technologies</option>
-
- <option value="664">cloud4u</option>
-
- <option value="448">Cloudbase Solutions</option>
-
- <option value="660">CloudFounders</option>
-
- <option value="888">Cloudify</option>
-
- <option value="635">CloudOrbit</option>
-
- <option value="23">Cloudscaling</option>
-
- <option value="1048">Cloudvisory</option>
-
- <option value="252">Cloudwatt</option>
-
- <option value="1039">CNCF</option>
-
- <option value="905">Codership</option>
-
- <option value="819">CodiLime SP (DeepSense.io)</option>
-
- <option value="309">Comcast</option>
-
- <option value="924">Concurrent</option>
-
- <option value="277">Coraid</option>
-
- <option value="774">CoreOS</option>
-
- <option value="591">Cray</option>
-
- <option value="397">Cumulus Networks</option>
-
- <option value="622">DataCentred</option>
-
- <option value="980">Datang Gohighsec Information Tech</option>
-
- <option value="889">Datera</option>
-
- <option value="932">DDN Storage</option>
-
- <option value="9">Dell</option>
-
- <option value="260">Dell EMC</option>
-
- <option value="195">Deutsche Telekom</option>
-
- <option value="659">Docker, Inc.</option>
-
- <option value="1024">E8 Storage</option>
-
- <option value="996">EANTC</option>
-
- <option value="506">EasyStack</option>
-
- <option value="1021">Ecloud</option>
-
- <option value="645">Elastx AB</option>
-
- <option value="594">Emulex Corporation</option>
-
- <option value="168">eNovance</option>
-
- <option value="754">Enter Cloud Suite</option>
-
- <option value="1030">Enterprise DB</option>
-
- <option value="866">EnterpriseZine</option>
-
- <option value="931">Enzu</option>
-
- <option value="753">Eplexity</option>
-
- <option value="216">Ericsson</option>
-
- <option value="160">F5 Networks</option>
-
- <option value="1050">FD.io</option>
-
- <option value="835">Fiberhome Telecommunication Technologies</option>
-
- <option value="773">Firefly</option>
-
- <option value="632">Flex</option>
-
- <option value="488">Flexiant</option>
-
- <option value="765">Fortinet</option>
-
- <option value="403">Fujitsu</option>
-
- <option value="307">Fusion-io</option>
-
- <option value="902">FusionStorm</option>
-
- <option value="244">Gale Technologies</option>
-
- <option value="823">Gemini Open Cloud Computing</option>
-
- <option value="1023">Genesis Hosting</option>
-
- <option value="939">Gigamon</option>
-
- <option value="925">Global Knowledge</option>
-
- <option value="521">GoDaddy</option>
-
- <option value="859">Google Cloud Platform</option>
-
- <option value="906">GroundWork Open Source Inc.</option>
-
- <option value="640">GuardiCore</option>
-
- <option value="1055">HAProxy Technologies</option>
-
- <option value="775">HCL</option>
-
- <option value="908">Hedvig Inc.</option>
-
- <option value="344">Hitachi </option>
-
- <option value="1072">Host Telecom</option>
-
- <option value="1059">HPE</option>
-
- <option value="248">Huawei</option>
-
- <option value="824">HyperHQ Inc.</option>
-
- <option value="235">IBM</option>
-
- <option value="573">INFINIDAT</option>
-
- <option value="829">InfinitiesSoft Solutions Inc.</option>
-
- <option value="628">Infoblox</option>
-
- <option value="291">Inktank</option>
-
- <option value="605">Inspur</option>
-
- <option value="26">Intel</option>
-
- <option value="41">Internap </option>
-
- <option value="646">inwinSTACK</option>
-
- <option value="755">ISA Technologies, Inc.</option>
-
- <option value="853">IT Leaders</option>
-
- <option value="638">it-novum</option>
-
- <option value="865">ITmedia Enterprise</option>
-
- <option value="806">ITOCHU</option>
-
- <option value="820">ITRI</option>
-
- <option value="749">JFrog</option>
-
- <option value="1042">Joyent</option>
-
- <option value="220">Juniper Networks</option>
-
- <option value="261">KIO Networks</option>
-
- <option value="502">Kontron</option>
-
- <option value="927">Kubernetes</option>
-
- <option value="720">Lenovo</option>
-
- <option value="870">Linux Academy</option>
-
- <option value="409">Linux Foundation</option>
-
- <option value="1063">Logicalis</option>
-
- <option value="1052">Loom Systems</option>
-
- <option value="922">MemoScale</option>
-
- <option value="71">Memset</option>
-
- <option value="247">Metacloud</option>
-
- <option value="1028">Micron Technology</option>
-
- <option value="39">Midokura</option>
-
- <option value="105">Mirantis</option>
-
- <option value="121">MPSTOR</option>
-
- <option value="135">Nebula</option>
-
- <option value="150">NEC</option>
-
- <option value="832">Net One Systems Co., Ltd</option>
-
- <option value="80">NetApp</option>
-
- <option value="894">Netronome</option>
-
- <option value="699">NetScout</option>
-
- <option value="525">New H3C Technologies Co., Limited</option>
-
- <option value="202">Nexenta</option>
-
- <option value="242">Nexus, a Dimension Data Co</option>
-
- <option value="887">NGINX</option>
-
- <option value="253">Nimbula</option>
-
- <option value="625">Nokia</option>
-
- <option value="776">NTT Communications</option>
-
- <option value="818">NTT Software Innovation Center / NTT Group</option>
-
- <option value="222">Nuage Networks</option>
-
- <option value="688">Nubeliu</option>
-
- <option value="455">Numergy</option>
-
- <option value="353">Nutanix</option>
-
- <option value="299">NxtGen</option>
-
- <option value="184">Objectif Libre</option>
-
- <option value="840">Okinawa Open Laboratory</option>
-
- <option value="593">Onyx CCS</option>
-
- <option value="1018">OP5</option>
-
- <option value="1044">Open Compute</option>
-
- <option value="895">Open Platform for NFV</option>
-
- <option value="844">Open Source Storage, LLC</option>
-
- <option value="1033">Open Switch</option>
-
- <option value="822">Open vStorage</option>
-
- <option value="1034">Open vSwitch</option>
-
- <option value="665">OpenCloudware XLcloud</option>
-
- <option value="1032">OpenSource.com</option>
-
- <option value="433">OpenStack Foundation</option>
-
- <option value="847">OpenVZ sponsored by Odin</option>
-
- <option value="473">Oracle</option>
-
- <option value="592">Orange</option>
-
- <option value="1027">Ormuco</option>
-
- <option value="856">OSDN</option>
-
- <option value="783">OSPod</option>
-
- <option value="698">OVH</option>
-
- <option value="1071">Packt</option>
-
- <option value="791">Parallels</option>
-
- <option value="657">Paris Region Enterprises</option>
-
- <option value="249">PayPal</option>
-
- <option value="880">Penguin Computing</option>
-
- <option value="50">Piston Cloud Computing, Inc.</option>
-
- <option value="718">Platform9 Systems, Inc</option>
-
- <option value="710">PLUMgrid</option>
-
- <option value="702">Produban</option>
-
- <option value="893">Project Calico</option>
-
- <option value="1037">Promise Cloud Solutions</option>
-
- <option value="863">Publickey</option>
-
- <option value="603">Pure Storage</option>
-
- <option value="604">QCT (Quanta Cloud Technology)</option>
-
- <option value="634">Qosmos</option>
-
- <option value="1">Rackspace</option>
-
- <option value="750">Rancher Labs</option>
-
- <option value="644">Ravello Systems</option>
-
- <option value="227">Red Hat, Inc.</option>
-
- <option value="250">RiverMeadow Software</option>
-
- <option value="983">Samsung</option>
-
- <option value="612">SAP</option>
-
- <option value="489">Sardina Systems</option>
-
- <option value="297">Scality</option>
-
- <option value="1051">SDX</option>
-
- <option value="787">SDX Central</option>
-
- <option value="276">Seagate</option>
-
- <option value="447">Servergy</option>
-
- <option value="747">SevOne</option>
-
- <option value="1046">Shanghai Engineering Research Center for Broadband Technologies &amp; Applications</option>
-
- <option value="709">SI-TECH</option>
-
- <option value="971">Sihua Technology</option>
-
- <option value="969">SkyAtlas</option>
-
- <option value="860">Skytap Inc</option>
-
- <option value="113">SolidFire</option>
-
- <option value="332">Solinea</option>
-
- <option value="684">StackIQ</option>
-
- <option value="626">StackStorm</option>
-
- <option value="631">StackVelocity</option>
-
- <option value="643">Storage Made Easy</option>
-
- <option value="283">Stratus Technologies</option>
-
- <option value="772">Supermicro</option>
-
- <option value="910">SuperUser</option>
-
- <option value="962">SurCloud</option>
-
- <option value="987">Sureline Systems</option>
-
- <option value="159">SUSE</option>
-
- <option value="205">SwiftStack Inc</option>
-
- <option value="871">T2 Cloud</option>
-
- <option value="1053">Target</option>
-
- <option value="697">Tata Communications</option>
-
- <option value="854">TECH.ASCII</option>
-
- <option value="784">TechTarget</option>
-
- <option value="990">TelecomTV</option>
-
- <option value="1049">Telefónica</option>
-
- <option value="686">teuto.net</option>
-
- <option value="361">Thales Group</option>
-
- <option value="782">The Cube</option>
-
- <option value="911">The New Stack</option>
-
- <option value="848">ThinkIT</option>
-
- <option value="734">Tintri</option>
-
- <option value="633">Toshiba</option>
-
- <option value="504">TrilioData</option>
-
- <option value="742">Tufin</option>
-
- <option value="940">UKCloud</option>
-
- <option value="623">Ultimum Technologies s.r.o.</option>
-
- <option value="374">UnitedStack Inc.</option>
-
- <option value="215">UOLDIVEO</option>
-
- <option value="926">UTSA Open Cloud Institute</option>
-
- <option value="781">vBrownBag</option>
-
- <option value="321">VCE</option>
-
- <option value="873">Veritas Technologies</option>
-
- <option value="945">Verizon</option>
-
- <option value="120">VEXXHOST, Inc.</option>
-
- <option value="571">Violin Memory</option>
-
- <option value="1038">VirTool Networks</option>
-
- <option value="474">Virtuozzo</option>
-
- <option value="243">VMware</option>
-
- <option value="909">Volkswagen AG</option>
-
- <option value="989">vScaler Ltd.</option>
-
- <option value="963">Walmart Labs</option>
-
- <option value="839">Wanclouds</option>
-
- <option value="1026">Wells Fargo</option>
-
- <option value="431">Western Digital Corporation</option>
-
- <option value="475">Wind River</option>
-
- <option value="219">Xemeti</option>
-
- <option value="1015">XILINX INC.</option>
-
- <option value="203">Yahoo Inc.</option>
-
- <option value="838">Yahoo! Japan</option>
-
- <option value="872">ZDNet Japan</option>
-
- <option value="825">ZeroStack</option>
-
- <option value="430">ZTE Corporation</option>
-
- <option value="858">クラウドWatch</option>
-
- <option value="855">スラド</option>
-
- <option value="857">日経Linux</option>
-
-</select>
-
- </div>
-
-
-
-</div>
-
-
- <div id="OtherCompany" class="field text">
- <label class="left" for="OsLogoProgramForm_Form_OtherCompany">Other Company (if not listed above)</label>
- <div class="middleColumn">
- <input type="text" name="OtherCompany" class="text form-control" id="OsLogoProgramForm_Form_OtherCompany" />
- </div>
-
-
-
-</div>
-
-
- </div>
-
- <div id="non-sponsor-company">
-
- <div id="NonSponsorCompany" class="field text">
- <label class="left" for="OsLogoProgramForm_Form_NonSponsorCompany">Company Name</label>
- <div class="middleColumn">
- <input type="text" name="NonSponsorCompany" class="text form-control" id="OsLogoProgramForm_Form_NonSponsorCompany" />
- </div>
-
-
-
-</div>
-
-
- </div>
-
- <div id="Product" class="field text">
- <label class="left" for="OsLogoProgramForm_Form_Product">Product or Service Name</label>
- <div class="middleColumn">
- <input type="text" name="Product" class="text form-control" id="OsLogoProgramForm_Form_Product" />
- </div>
-
-
-
-</div>
-
-
- If your proposed product name includes the OpenStack word mark, it will need to be approved as part of the licensing process.<br><br>
-
- <hr/>
-
- <div id="CompanyDetails" class="field textarea">
- <label class="left" for="OsLogoProgramForm_Form_CompanyDetails">Product or Service Description</label>
- <div class="middleColumn">
- <textarea name="CompanyDetails" class="textarea form-control" id="OsLogoProgramForm_Form_CompanyDetails" rows="5" cols="20"></textarea>
- </div>
-
-
-
-</div>
-
-
- <div id="Category" class="field optionset checkboxset">
- <label class="left">Which of the following categories does your product fit into? This will help us recommend the approprite licensing and associated marketing programs and assets:</label>
- <div class="middleColumn">
- <ul id="OsLogoProgramForm_Form_Category" class="optionset checkboxset" >
-
-
- <li class="odd valPublic_Clouds">
- <input id="OsLogoProgramForm_Form_Category_PublicClouds" class="checkbox" name="Category[Public Clouds]" type="checkbox" value="Public Clouds" />
- <label for="OsLogoProgramForm_Form_Category_PublicClouds">Public Clouds</label>
- </li>
-
- <li class="even valDistributions">
- <input id="OsLogoProgramForm_Form_Category_Distributions" class="checkbox" name="Category[Distributions]" type="checkbox" value="Distributions" />
- <label for="OsLogoProgramForm_Form_Category_Distributions">Distributions</label>
- </li>
-
- <li class="odd valConverged_Appliances">
- <input id="OsLogoProgramForm_Form_Category_ConvergedAppliances" class="checkbox" name="Category[Converged Appliances]" type="checkbox" value="Converged Appliances" />
- <label for="OsLogoProgramForm_Form_Category_ConvergedAppliances">Converged Appliances</label>
- </li>
-
- <li class="even valStorage">
- <input id="OsLogoProgramForm_Form_Category_Storage" class="checkbox" name="Category[Storage]" type="checkbox" value="Storage" />
- <label for="OsLogoProgramForm_Form_Category_Storage">Storage</label>
- </li>
-
- <li class="odd valConsultants___System_Integrators">
- <input id="OsLogoProgramForm_Form_Category_ConsultantsSystemIntegrators" class="checkbox" name="Category[Consultants & System Integrators]" type="checkbox" value="Consultants & System Integrators" />
- <label for="OsLogoProgramForm_Form_Category_ConsultantsSystemIntegrators">Consultants & System Integrators</label>
- </li>
-
- <li class="even valTraining">
- <input id="OsLogoProgramForm_Form_Category_Training" class="checkbox" name="Category[Training]" type="checkbox" value="Training" />
- <label for="OsLogoProgramForm_Form_Category_Training">Training</label>
- </li>
-
- <li class="odd valPaaS">
- <input id="OsLogoProgramForm_Form_Category_PaaS" class="checkbox" name="Category[PaaS]" type="checkbox" value="PaaS" />
- <label for="OsLogoProgramForm_Form_Category_PaaS">PaaS</label>
- </li>
-
- <li class="even valManagement___Monitoring">
- <input id="OsLogoProgramForm_Form_Category_ManagementMonitoring" class="checkbox" name="Category[Management & Monitoring]" type="checkbox" value="Management & Monitoring" />
- <label for="OsLogoProgramForm_Form_Category_ManagementMonitoring">Management & Monitoring</label>
- </li>
-
- <li class="odd valApps_on_OpenStack">
- <input id="OsLogoProgramForm_Form_Category_AppsonOpenStack" class="checkbox" name="Category[Apps on OpenStack]" type="checkbox" value="Apps on OpenStack" />
- <label for="OsLogoProgramForm_Form_Category_AppsonOpenStack">Apps on OpenStack</label>
- </li>
-
- <li class="even valCompatible_HW___SW">
- <input id="OsLogoProgramForm_Form_Category_CompatibleHWSW" class="checkbox" name="Category[Compatible HW & SW]" type="checkbox" value="Compatible HW & SW" />
- <label for="OsLogoProgramForm_Form_Category_CompatibleHWSW">Compatible Hardware & Software</label>
- </li>
-
-
-</ul>
- </div>
-
-
-
-</div>
-
-
- <div id="Regions" class="field optionset checkboxset">
- <label class="left">In which regions does your company operate?</label>
- <div class="middleColumn">
- <ul id="OsLogoProgramForm_Form_Regions" class="optionset checkboxset" >
-
-
- <li class="odd valNorth_America">
- <input id="OsLogoProgramForm_Form_Regions_NorthAmerica" class="checkbox" name="Regions[North America]" type="checkbox" value="North America" />
- <label for="OsLogoProgramForm_Form_Regions_NorthAmerica">North America</label>
- </li>
-
- <li class="even valSouth_America">
- <input id="OsLogoProgramForm_Form_Regions_SouthAmerica" class="checkbox" name="Regions[South America]" type="checkbox" value="South America" />
- <label for="OsLogoProgramForm_Form_Regions_SouthAmerica">South America</label>
- </li>
-
- <li class="odd valEurope">
- <input id="OsLogoProgramForm_Form_Regions_Europe" class="checkbox" name="Regions[Europe]" type="checkbox" value="Europe" />
- <label for="OsLogoProgramForm_Form_Regions_Europe">Europe</label>
- </li>
-
- <li class="even valAsia_Pacific">
- <input id="OsLogoProgramForm_Form_Regions_AsiaPacific" class="checkbox" name="Regions[Asia Pacific]" type="checkbox" value="Asia Pacific" />
- <label for="OsLogoProgramForm_Form_Regions_AsiaPacific">Asia Pacific</label>
- </li>
-
-
-</ul>
- </div>
-
-
-
-</div>
-
-
- <div id="Projects" class="field optionset checkboxset">
- <label class="left">Select the OpenStack projects your product uses:</label>
- <div class="middleColumn">
- <ul id="OsLogoProgramForm_Form_Projects" class="optionset checkboxset" >
-
-
- <li class="odd valOpenStack_Compute">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackCompute" class="checkbox" name="Projects[OpenStack Compute]" type="checkbox" value="OpenStack Compute" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackCompute">OpenStack Compute</label>
- </li>
-
- <li class="even valOpenStack_Object_Storage">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackObjectStorage" class="checkbox" name="Projects[OpenStack Object Storage]" type="checkbox" value="OpenStack Object Storage" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackObjectStorage">OpenStack Object Storage</label>
- </li>
-
- <li class="odd valOpenStack_Image_Service">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackImageService" class="checkbox" name="Projects[OpenStack Image Service]" type="checkbox" value="OpenStack Image Service" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackImageService">OpenStack Image Service</label>
- </li>
-
- <li class="even valOpenStack_Networking">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackNetworking" class="checkbox" name="Projects[OpenStack Networking]" type="checkbox" value="OpenStack Networking" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackNetworking">OpenStack Networking</label>
- </li>
-
- <li class="odd valOpenStack_Dashboard">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackDashboard" class="checkbox" name="Projects[OpenStack Dashboard]" type="checkbox" value="OpenStack Dashboard" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackDashboard">OpenStack Dashboard</label>
- </li>
-
- <li class="even valOpenStack_Orchestration">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackOrchestration" class="checkbox" name="Projects[OpenStack Orchestration]" type="checkbox" value="OpenStack Orchestration" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackOrchestration">OpenStack Orchestration</label>
- </li>
-
- <li class="odd valOpenStack_Identity">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackIdentity" class="checkbox" name="Projects[OpenStack Identity]" type="checkbox" value="OpenStack Identity" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackIdentity">OpenStack Identity</label>
- </li>
-
- <li class="even valOpenStack_Metering">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackMetering" class="checkbox" name="Projects[OpenStack Metering]" type="checkbox" value="OpenStack Metering" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackMetering">OpenStack Metering</label>
- </li>
-
- <li class="odd valOpenStack_Block_Storage">
- <input id="OsLogoProgramForm_Form_Projects_OpenStackBlockStorage" class="checkbox" name="Projects[OpenStack Block Storage]" type="checkbox" value="OpenStack Block Storage" />
- <label for="OsLogoProgramForm_Form_Projects_OpenStackBlockStorage">OpenStack Block Storage</label>
- </li>
-
-
-</ul>
- </div>
-
-
-
-</div>
-
-
- <div id="APIExposed" class="field checkbox">
- <input type="checkbox" name="APIExposed" value="1" class="checkbox" id="OsLogoProgramForm_Form_APIExposed" />
- <label class="right" for="OsLogoProgramForm_Form_APIExposed">My product exposes the OpenStack API</label>
-
-
-</div>
-
-
- <div id="field_98438688" class="field text honey">
- <label class="left" for="OsLogoProgramForm_Form_field_98438688">field_98438688</label>
- <div class="middleColumn">
- <input type="text" name="field_98438688" class="text honey form-control" id="OsLogoProgramForm_Form_field_98438688" />
- </div>
-
-
-
-</div>
-
-
- <input type="hidden" name="SecurityID" value="618918bae16ecff556e548f5dfd6eb0c9d3c79e5" class="hidden form-control" id="OsLogoProgramForm_Form_SecurityID" />
-
-
- <div class="clear"><!-- --></div>
- </fieldset>
-
-
- <div class="Actions">
-
-
- <input type="submit" name="action_save" value="Request Information" class="action" id="OsLogoProgramForm_Form_action_save" />
-
-
-
- </div>
-
-
-</form>
-
-
-
-
- </div> <!-- Close content div -->
- <div class="col-lg-3 col-lg-pull-9">
- <div class="newSubNav">
- <ul class="overviewNav">
-
- <li id="brand"><a href="/brand/" title="Go to the &Title&quot; page" class="section">Branding <i class="fa fa-chevron-right"></i></a></li>
-
-
- <li id="openstack-trademark-policy"><a href="/brand/openstack-trademark-policy/" title="Go to the &quot;OpenStack Trademark Policy&quot; page" class="link">OpenStack Trademark Policy <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="web-badges"><a href="/brand/web-badges/" title="Go to the &quot;OpenStack Web Badges&quot; page" class="link">Web Badges <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="openstack-logo"><a href="/brand/openstack-logo/" title="Go to the &quot;OpenStack Logo&quot; page" class="link">OpenStack Logo <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="openstack-compatible"><a href="/brand/openstack-compatible/" title="Go to the &quot;OpenStack Compatible Logo&quot; page" class="link">OpenStack Compatible <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="event-policy"><a href="/brand/event-policy/" title="Go to the &quot;OpenStack Event Policy&quot; page" class="link">OpenStack Event Policy <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="openstack-blog-code-of-conduct"><a href="/brand/openstack-blog-code-of-conduct/" title="Go to the &quot;OpenStack Blog Code of Conduct&quot; page" class="link">Blog Code of Conduct <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="openstack-powered"><a href="/brand/openstack-powered/" title="Go to the &quot;OpenStack Powered&quot; page" class="link">OpenStack Powered <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="openstack-training"><a href="/brand/openstack-training/" title="Go to the &quot;OpenStack Training&quot; page" class="link">OpenStack Training Logo <i class="fa fa-chevron-right"></i></a></li>
-
- <li id="interop"><a href="/brand/interop/" title="Go to the &quot;Interop&quot; page" class="link">Interop <i class="fa fa-chevron-right"></i></a></li>
-
- </ul>
-</div>
- </div>
- </div> <!-- Close row div -->
-
-</div>
- </div>
-
- <footer>
- <div class="container">
- <div class="row footer-links">
- <div class="col-lg-2 col-sm-2">
- <h3>OpenStack</h3>
- <ul>
- <li><a href="//openstack.org/projects/">Projects</a></li>
- <li><a href="//openstack.org/software/security/">OpenStack Security</a></li>
- <li><a href="//openstack.org/projects/openstack-faq/">Common Questions</a></li>
- <li><a href="https://openstack.org/blog/">Blog</a></li>
- <li><a href="//openstack.org/news/">News</a></li>
- </ul>
- </div>
- <div class="col-lg-2 col-sm-2">
- <h3>Community</h3>
- <ul>
- <li><a href="//openstack.org/community/">User Groups</a></li>
- <li><a href="//openstack.org/community/events/">Events</a></li>
- <li><a href="//openstack.org/community/jobs/">Jobs</a></li>
- <li><a href="//openstack.org/foundation/companies/">Companies</a></li>
- <li><a href="http://docs.openstack.org/infra/manual/developers.html">Contribute</a></li>
- <li><a href="//openstack.org/store">Get Swag!</a></li>
- </ul>
- </div>
- <div class="col-lg-2 col-sm-2">
- <h3>Documentation</h3>
- <ul>
- <li><a href="http://docs.openstack.org">OpenStack Manuals</a></li>
- <li><a href="//openstack.org/software/start/">Getting Started</a></li>
- <li><a href="http://developer.openstack.org">API Documentation</a></li>
- <li><a href="https://wiki.openstack.org">Wiki</a></li>
- </ul>
- </div>
- <div class="col-lg-2 col-sm-2">
- <h3>Branding & Legal</h3>
- <ul>
- <li><a href="//openstack.org/brand/">Logos & Guidelines</a></li>
- <li><a href="//openstack.org/brand/openstack-trademark-policy/">Trademark Policy</a></li>
- <li><a href="//openstack.org/privacy/">Privacy Policy</a></li>
- <li><a href="https://wiki.openstack.org/wiki/How_To_Contribute#Contributor_License_Agreement">OpenStack CLA</a></li>
- </ul>
- </div>
- <div class="col-lg-4 col-sm-4">
- <h3>Stay In Touch</h3>
- <a href="https://twitter.com/OpenStack" target="_blank" class="social-icons footer-twitter"></a>
- <a href="https://www.facebook.com/openstack" target="_blank" class="social-icons footer-facebook"></a>
- <a href="https://www.linkedin.com/company/openstack" target="_blank" class="social-icons footer-linkedin"></a>
- <a href="https://www.youtube.com/user/OpenStackFoundation" target="_blank" class="social-icons footer-youtube"></a>
- <!-- <form class="form-inline">
- <div class="form-group newsletter-form">
- <label>Join Our Newsletter</label>
- <input class="newsletter-input" type="input" placeholder="Email">
- <button type="submit" class="newsletter-btn">Join</button>
- </div>
- </form> -->
- <p class="fine-print">
- The OpenStack project is provided under the Apache 2.0 license. Openstack.org is powered by <a href="https://rackspace.com" target="_blank">Rackspace Cloud Computing</a>.
- </p>
- </div>
- </div>
- </div>
- </footer>
- <div class="footer-bottom">
- <div class="container">
- <form class="form-inline" id="FeedbackForm_FeedbackForm" action="/brand/logo-request/FeedbackForm" method="post" enctype="application/x-www-form-urlencoded">
- <div class="form-group">
- <div>
- <fieldset class="footer-feedback-fieldset">
- <input class="feedback-input" type="input" placeholder="Give Us Your Feedback On This Page" id="FeedbackForm_FeedbackForm_Content" name="Content">
- <input type="hidden" name="SecurityID" value="618918bae16ecff556e548f5dfd6eb0c9d3c79e5" class="hidden form-control" id="FeedbackForm_FeedbackForm_SecurityID" />
-
- <button type="submit" class="feedback-btn" id="FeedbackForm_FeedbackForm_action_submitFeedback" name="action_submitFeedback">Submit</button>
- </fieldset>
- </div>
- </div>
-</form>
- </div>
- </div>
- <!-- Quantcast Tag -->
-<script type="text/javascript">
-var _qevents = _qevents || [];
-
-(function() {
-var elem = document.createElement('script');
-elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
-elem.async = true;
-elem.type = "text/javascript";
-var scpt = document.getElementsByTagName('script')[0];
-scpt.parentNode.insertBefore(elem, scpt);
-})();
-
-_qevents.push({
-qacct:"p-fM0cfazHHeyRH"
-});
-</script>
-
-<noscript>
-<div style="display:none;">
-<img src="//pixel.quantserve.com/pixel/p-fM0cfazHHeyRH.gif" border="0" height="1" width="1" alt="Quantcast"/>
-</div>
-</noscript>
-<!-- End Quantcast tag -->
- <!-- Twitter universal website tag code -->
-<script>
- !function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
- },s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='//static.ads-twitter.com/uwt.js',
- a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
- // Insert Twitter Pixel ID and Standard Event data below
- twq('init','nxuu6');
- twq('track','PageView');
-</script>
-<!-- End Twitter universal website tag code -->
- </body>
- <script type="text/javascript">
- _linkedin_data_partner_id = "36268";
-</script><script type="text/javascript">
- (function(){var s = document.getElementsByTagName("script")[0];
- var b = document.createElement("script");
- b.type = "text/javascript";b.async = true;
- b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
- s.parentNode.insertBefore(b, s);})();
-</script>
-</html> \ No newline at end of file
diff --git a/cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html b/cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html
deleted file mode 100644
index 749315d0..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<div>
- <div class="row" style="margin-top:20px">
- <div class="col-sm-offset-1 col-sm-11">
- <div>
- <label class="col-sm-3">Organization name: </label>
- <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.organization_name" disabled>
- </div>
- <div>
- <label class="col-sm-3">Organization website: </label>
- <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.organization_web" disabled>
- </div>
- <div>
- <label class="col-sm-3">Product name: </label>
- <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.product_name" disabled>
- </div>
- <div>
- <label class="col-sm-3">Product documentation: </label>
- <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.product_categories" disabled>
- </div>
- <div>
- <label class="col-sm-3">User ID: </label>
- <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.user_id" disabled>
- </div>
- </div>
- <div class="btn-group col-sm-offset-5 application-modal-button" role="group">
- <button type="button" class="btn btn-default" ng-click="ctrl.submitForm()">Confirm</button>
- <button type="button" class="btn btn-default" style="margin-left:20px" ng-click="ctrl.cancelSubmit()">Cancel</button>
- </div>
- </div>
-</div>
-
-<style>
-.ngdialog.ngdialog-theme-default.custom-width-60 .ngdialog-content {
- width: 50%;
-}
-.application-modal-text {
- margin-bottom: 5px;
-}
-.application-modal-button {
- margin-top: 10px;
- margin-bottom: 20px;
-}
-</style>
diff --git a/cvp/3rd_party/static/testapi-ui/components/auth-failure/authFailureController.js b/cvp/3rd_party/static/testapi-ui/components/auth-failure/authFailureController.js
deleted file mode 100644
index 29d1d70f..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/auth-failure/authFailureController.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('AuthFailureController', AuthFailureController);
-
- AuthFailureController.$inject = ['$location', '$state', 'raiseAlert'];
- /**
- * TestAPI Auth Failure Controller
- * This controller handles messages from TestAPI API if user auth fails.
- */
- function AuthFailureController($location, $state, raiseAlert) {
- var ctrl = this;
- ctrl.message = $location.search().message;
- raiseAlert('danger', 'Authentication Failure:', ctrl.message);
- $state.go('home');
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/auth/authPortal.html b/cvp/3rd_party/static/testapi-ui/components/auth/authPortal.html
deleted file mode 100644
index 82327695..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/auth/authPortal.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<h3>Sign In</h3>
-<b>Please choose your account provider:</b>
-<div class="row">
- <div class="col-xs-6 col-md-3">
- <a ng-click="auth.doSignIn('cas')" class="thumbnail">
- <img style="width:256px;height:64px" src="https://identity.linuxfoundation.org/sites/all/themes/lfidentity/lflogo2016_color.png" alt="LinuxFoundationID">
- </a>
- </div>
- <div class="col-xs-6 col-md-3">
- <a ng-click="auth.doSignIn('openstack')" class="thumbnail">
- <img style="width:256px;height:64px" src="https://www.openstack.org/themes/openstack/images/openstack-logo-full.svg" alt="OPENSTACK">
- </a>
- </div>
- <!--
- <div class="col-xs-6 col-md-3">
- <a ng-click="auth.doSignIn('jira')" class="thumbnail">
- <img style="width:256px;height:64px" src="https://www.linuxfoundation.org/themes/custom/linux_foundation/logo.svg" alt="LinuxFoundationID">
- </a>
- </div>
- -->
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/directory/directory.html b/cvp/3rd_party/static/testapi-ui/components/directory/directory.html
deleted file mode 100644
index 1174752c..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/directory/directory.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<div class="container-fluid common-main-container">
- <h3>OPNFV Verified Product Directory</h3>
-
- <div>
- <h4>Compliance Marks Granted to {{ctrl.companyID}}</h4>
- <img class="" src="api/v1/cvp/applications/getlogo/{{ctrl.company_logo}}" />
- <table class="table table-striped table-hover">
- <thead>
- <tr class="">
- <th>Product</th>
- <th>Description</th>
- <th>OVP Cateogry</th>
- <th>OVP Version</th>
- <th>Product Info</th>
- <th>SUT Version</th>
- <th>SUT HW Version</th>
- </tr>
- </thead>
- <tbody class="directory_inner" style=" overflow: hidden; text-overflow: ellipsis;">
- <tr style="vertical-align: center;" ng-repeat="prod in ctrl.directory" ng-if="prod.organization_name==ctrl.companyID && prod.approved=='true'">
- <td width="250">{{ prod.product_name}}</td>
- <td width="350">{{ prod.description}}</td>
- <td width="150">{{ prod.ovp_category}}</td>
- <td width="150">{{ prod.ovp_version}}</td>
- <td><a href="{{ prod.product_documentation}}" target="_blank">{{ prod.product_documentation}}</a></td>
- <td width="150">{{ prod.sut_version}}</td>
- <td width="150">{{ prod.sut_hw_version}}</td>
- </tr>
- </tbody>
- </table>
-
- </div>
-
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/directory/directoryController.js b/cvp/3rd_party/static/testapi-ui/components/directory/directoryController.js
deleted file mode 100644
index 18fda09e..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/directory/directoryController.js
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('DirectoryController', DirectoryController);
-
- DirectoryController.$inject = ['$location', '$http', '$stateParams',
- 'testapiApiUrl'
- ];
-
- /**
- * This controller handles the directory page
- */
- function DirectoryController($location, $http, $stateParams, testapiApiUrl) {
- var ctrl = this;
-
- ctrl.companyID = $stateParams.companyID;
- ctrl.company_logo = $stateParams.logo;
- getDirectory();
-
- function getDirectory(){
- $http.get(testapiApiUrl + "/cvp/applications").then(function(response){
- ctrl.directory = response.data.applications;
- }, function(error){
- });
- }
-
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/guidelines/data/danube.json b/cvp/3rd_party/static/testapi-ui/components/guidelines/data/danube.json
deleted file mode 100644
index 99613b72..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/guidelines/data/danube.json
+++ /dev/null
@@ -1,590 +0,0 @@
-{
- "mandatory": {
- "name": "Mandatory CVP Test Areas",
- "value": [
- {
- "area_name": "Test Area VIM Operations - Compute",
- "value": [
- {
- "api_name": "Image operations within the Compute API",
- "value": [
- "tempest.api.compute.images.test_images_oneserver.ImagesOneServerTestJSON.test_create_delete_image",
- "tempest.api.compute.images.test_images_oneserver.ImagesOneServerTestJSON.test_create_image_specify_multibyte_character_image_name"
- ]
- },
- {
- "api_name": "Basic support Compute API for server actions such as reboot, rebuild, resize",
- "value": [
- "tempest.api.compute.servers.test_instance_actions.InstanceActionsTestJSON.test_get_instance_action",
- "tempest.api.compute.servers.test_instance_actions.InstanceActionsTestJSON.test_list_instance_actions"
- ]
- },
- {
- "api_name": "Generate, import, and delete SSH keys within Compute services",
- "value": [
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_specify_keypair"
- ]
- },
- {
- "api_name": "List supported versions of the Compute API",
- "value": [
- "tempest.api.compute.test_versions.TestVersions.test_list_api_versions"
- ]
- },
- {
- "api_name": "Quotas management in Compute API",
- "value": [
- "tempest.api.compute.test_quotas.QuotasTestJSON.test_get_default_quotas",
- "tempest.api.compute.test_quotas.QuotasTestJSON.test_get_quotas"
- ]
- },
- {
- "api_name": "Basic server operations in the Compute API",
- "value": [
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_server_with_admin_password",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_with_existing_server_name",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_numeric_server_name",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_server_metadata_exceeds_length_limit",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_server_name_length_exceeds_256",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_flavor",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_image",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_network_uuid",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_delete_server_pass_id_exceeding_length_limit",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_delete_server_pass_negative_id",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_get_non_existent_server",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_host_name_is_same_as_server_name",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_host_name_is_same_as_server_name",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_invalid_ip_v6_address",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_list_servers",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_list_servers_with_detail",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_list_servers",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_list_servers_with_detail",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_flavor",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_image",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_server_name",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_server_status",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_limit_results",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_flavor",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_image",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_limit",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_server_name",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_server_status",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filtered_by_name_wildcard",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_changes_since_future_date",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_changes_since_invalid_date",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_greater_than_actual_count",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_pass_negative_value",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_pass_string",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_flavor",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_image",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_server_name",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_detail_server_is_deleted",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_status_non_existing",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_with_a_deleted_server",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_lock_unlock_server",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_delete_server_metadata_item",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_get_server_metadata_item",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_list_server_metadata",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_set_server_metadata",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_set_server_metadata_item",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_update_server_metadata",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_server_name_blank",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_reboot_server_hard",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_reboot_non_existent_server",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_rebuild_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_rebuild_deleted_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_rebuild_non_existent_server",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_stop_start_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_stop_non_existent_server",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_access_server_address",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_server_name",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_name_of_non_existent_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_server_name_length_exceeds_256",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_server_set_empty_name",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_created_server_vcpus",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_server_details",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_created_server_vcpus",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_server_details"
- ]
- },
- {
- "api_name": "Retrieve volume information through the Compute API",
- "value": [
- "tempest.api.compute.volumes.test_attach_volume.AttachVolumeTestJSON.test_attach_detach_volume",
- "tempest.api.compute.volumes.test_attach_volume.AttachVolumeTestJSON.test_list_get_volume_attachments"
- ]
- }
- ]
- },
- {
- "area_name": "Test Area VIM Operations - Identity",
- "value": [
- {
- "api_name": "API discovery operations within the Identity v3 API",
- "value": [
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_media_types",
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_resources",
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_statuses"
- ]
- },
- {
- "api_name": "Auth operations within the Identity API",
- "value": [
- "tempest.api.identity.v3.test_tokens.TokensV3Test.test_create_token"
- ]
- }
- ]
- },
- {
- "area_name": "Test Area VIM Operations - Image",
- "value": [
- {
- "api_name": "Image deletion tests using the Glance v2 API",
- "value": [
- "tempest.api.image.v2.test_images.BasicOperationsImagesTest.test_delete_image",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_delete_image_null_id",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_delete_non_existing_image",
- "tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest.test_delete_non_existing_tag"
- ]
- },
- {
- "api_name": "Image get tests using the Glance v2 API",
- "value": [
- "tempest.api.image.v2.test_images.ListImagesTest.test_get_image_schema",
- "tempest.api.image.v2.test_images.ListImagesTest.test_get_images_schema",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_delete_deleted_image",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_image_null_id",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_non_existent_image"
- ]
- },
- {
- "api_name": "CRUD image operations in Images API v2",
- "value": [
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_no_params"
- ]
- },
- {
- "api_name": "Image list tests using the Glance v2 API",
- "value": [
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_container_format",
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_disk_format",
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_limit",
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_min_max_size",
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_size",
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_status",
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_visibility"
- ]
- },
- {
- "api_name": "Image update tests using the Glance v2 API",
- "value": [
- "tempest.api.image.v2.test_images.BasicOperationsImagesTest.test_update_image",
- "tempest.api.image.v2.test_images_tags.ImagesTagsTest.test_update_delete_tags_for_image",
- "tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest.test_update_tags_for_non_existing_image"
- ]
- }
- ]
- },
- {
- "area_name": "Test Area VIM Operations - Network",
- "value": [
- {
- "api_name": "Basic CRUD operations on L2 networks and L2 network ports",
- "value": [
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_all_attributes",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_allocation_pools",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_dhcp_enabled",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_gw",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_gw_and_allocation_pools",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_host_routes_and_dns_nameservers",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_without_gateway",
- "tempest.api.network.test_networks.NetworksTest.test_create_update_delete_network_subnet",
- "tempest.api.network.test_networks.NetworksTest.test_delete_network_with_subnet",
- "tempest.api.network.test_networks.NetworksTest.test_list_networks",
- "tempest.api.network.test_networks.NetworksTest.test_list_networks_fields",
- "tempest.api.network.test_networks.NetworksTest.test_list_subnets",
- "tempest.api.network.test_networks.NetworksTest.test_list_subnets_fields",
- "tempest.api.network.test_networks.NetworksTest.test_show_network",
- "tempest.api.network.test_networks.NetworksTest.test_show_network_fields",
- "tempest.api.network.test_networks.NetworksTest.test_show_subnet",
- "tempest.api.network.test_networks.NetworksTest.test_show_subnet_fields",
- "tempest.api.network.test_networks.NetworksTest.test_update_subnet_gw_dns_host_routes_dhcp",
- "tempest.api.network.test_ports.PortsTestJSON.test_create_bulk_port",
- "tempest.api.network.test_ports.PortsTestJSON.test_create_port_in_allowed_allocation_pools",
- "tempest.api.network.test_ports.PortsTestJSON.test_create_update_delete_port",
- "tempest.api.network.test_ports.PortsTestJSON.test_list_ports",
- "tempest.api.network.test_ports.PortsTestJSON.test_list_ports_fields",
- "tempest.api.network.test_ports.PortsTestJSON.test_show_port",
- "tempest.api.network.test_ports.PortsTestJSON.test_show_port_fields",
- "tempest.api.network.test_ports.PortsTestJSON.test_update_port_with_security_group_and_extra_attributes",
- "tempest.api.network.test_ports.PortsTestJSON.test_update_port_with_two_security_groups_and_extra_attributes"
- ]
- },
- {
- "api_name": "Basic CRUD operations on security groups",
- "value": [
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_list_update_show_delete_security_group",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_additional_args",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_icmp_type_code",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_protocol_integer_value",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_remote_group_id",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_remote_ip_prefix",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_show_delete_security_group_rule",
- "tempest.api.network.test_security_groups.SecGroupTest.test_list_security_groups",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_additional_default_security_group_fails",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_duplicate_security_group_rule_fails",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_ethertype",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_protocol",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_remote_ip_prefix",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_invalid_ports",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_non_existent_remote_groupid",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_non_existent_security_group",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_delete_non_existent_security_group",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_show_non_existent_security_group",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_show_non_existent_security_group_rule"
- ]
- }
- ]
- },
- {
- "area_name": "Test Area VIM Operations - Volume",
- "value": [
- {
- "api_name": "Volume attach and detach operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_attach_detach_volume_to_instance",
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_get_volume_attachment",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_attach_volumes_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_detach_volumes_with_invalid_volume_id"
- ]
- },
- {
- "api_name": "Volume service availability zone operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_availability_zone.AvailabilityZoneV2TestJSON.test_get_availability_zone_list"
- ]
- },
- {
- "api_name": "Volume cloning operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete_as_clone"
- ]
- },
- {
- "api_name": "Image copy-to-volume operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_volume_bootable",
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete_from_image"
- ]
- },
- {
- "api_name": "Volume creation and deletion operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_invalid_size",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_source_volid",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_volume_type",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_out_passing_size",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_size_negative",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_size_zero"
- ]
- },
- {
- "api_name": "Volume service extension listing operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_extensions.ExtensionsV2TestJSON.test_list_extensions"
- ]
- },
- {
- "api_name": "Volume GET operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_get_invalid_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_get_volume_without_passing_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_volume_get_nonexistent_volume_id"
- ]
- },
- {
- "api_name": "Volume listing operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_by_name",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_by_name",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_param_display_name_and_status",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_detail_param_display_name_and_status",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_detail_param_metadata",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_details",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_param_metadata",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_by_availability_zone",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_by_status",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_details_by_availability_zone",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_details_by_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_detail_with_invalid_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_detail_with_nonexistent_name",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_with_invalid_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_with_nonexistent_name",
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_pagination",
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_with_multiple_params",
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_pagination"
- ]
- },
- {
- "api_name": "Volume metadata operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volume_metadata.VolumesV2MetadataTest.test_create_get_delete_volume_metadata",
- "tempest.api.volume.test_volume_metadata.VolumesV2MetadataTest.test_update_volume_metadata_item"
- ]
- },
- {
- "api_name": "Verification of read-only status on volumes with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_volume_readonly_update"
- ]
- },
- {
- "api_name": "Volume reservation operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_reserve_unreserve_volume",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_reserve_volume_with_negative_volume_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_reserve_volume_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_unreserve_volume_with_nonexistent_volume_id"
- ]
- },
- {
- "api_name": "Volume snapshot creation/deletion operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_snapshot_metadata.SnapshotV2MetadataTestJSON.test_create_get_delete_snapshot_metadata",
- "tempest.api.volume.test_snapshot_metadata.SnapshotV2MetadataTestJSON.test_update_snapshot_metadata_item",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_snapshot_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_delete_invalid_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_delete_volume_without_passing_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_volume_delete_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_snapshot_create_get_list_update_delete",
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_volume_from_snapshot",
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_snapshots_list_details_with_params",
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_snapshots_list_with_params",
- "tempest.api.volume.test_volumes_snapshots_negative.VolumesV2SnapshotNegativeTestJSON.test_create_snapshot_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_snapshots_negative.VolumesV2SnapshotNegativeTestJSON.test_create_snapshot_without_passing_volume_id"
- ]
- },
- {
- "api_name": "Volume update operations with the Cinder v2 API",
- "value": [
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_empty_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_invalid_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_nonexistent_volume_id"
- ]
- }
- ]
- },
- {
- "area_name": "Test Area High Availability",
- "value": [
- {
- "api_name": "Verify high availability of OpenStack controller services",
- "value": [
- "opnfv.ha.tc001.nova-api_service_down",
- "opnfv.ha.tc003.neutron-server_service_down",
- "opnfv.ha.tc004.keystone_service_down",
- "opnfv.ha.tc005.glance-api_service_down",
- "opnfv.ha.tc006.cinder-api_service_down",
- "opnfv.ha.tc009.cpu_overload",
- "opnfv.ha.tc010.disk_I/O_block",
- "opnfv.ha.tc011.load_balance_service_down"
- ]
- }
- ]
- },
- {
- "area_name": "Test Area vPing - Basic VNF Connectivity",
- "value": [
- {
- "api_name": "Verify basic VNF connectivity with ICMP ping packets",
- "value": [
- "opnfv.vping.userdata",
- "opnfv.vping.ssh"
- ]
- }
- ]
- }
- ]
- },
- "optional": {
- "name": "Optional CVP Test Areas",
- "value": [
- {
- "area_name": "Test Area BGP VPN",
- "value": [
- {
- "api_name": "Verify association and dissasocitation of node using route targets",
- "value": [
- "opnfv.sdnvpn.subnet_connectivity",
- "opnfv.sdnvpn.tenant separation",
- "opnfv.sdnvpn.router_association",
- "opnfv.sdnvpn.router_association_floating_ip"
- ]
- }
- ]
- },
- {
- "area_name": "Test Area IPv6 Compliance Testing Methodology and Test Cases",
- "value": [
- {
- "api_name": "Test Case 1: Create and Delete an IPv6 Network, Port and Subnet",
- "value": [
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_network",
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_port",
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_subnet"
- ]
- },
- {
- "api_name": "Test Case 2: Create, Update and Delete an IPv6 Network and Subnet",
- "value": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_create_update_delete_network_subnet"
- ]
- },
- {
- "api_name": "Test Case 3: Check External Network Visibility",
- "value": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_external_network_visibility"
- ]
- },
- {
- "api_name": "Test Case 4: List IPv6 Networks and Subnets of a Tenant",
- "value": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_list_networks",
- "tempest.api.network.test_networks.NetworksIpV6Test.test_list_subnets"
- ]
- },
- {
- "api_name": "Test Case 5: Show Information of an IPv6 Network and Subnet",
- "value": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_show_network",
- "tempest.api.network.test_networks.NetworksIpV6Test.test_show_subnet"
- ]
- },
- {
- "api_name": "Test Case 6: Create an IPv6 Port in Allowed Allocation Pools",
- "value": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_port_in_allowed_allocation_pools"
- ]
- },
- {
- "api_name": "Test Case 7: Create an IPv6 Port without Security Groups",
- "value": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_port_with_no_securitygroups"
- ]
- },
- {
- "api_name": "Test Case 8: Create, Update and Delete an IPv6 Port",
- "value": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_update_delete_port"
- ]
- },
- {
- "api_name": "Test Case 9: List IPv6 Ports of a Tenant",
- "value": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_list_ports"
- ]
- },
- {
- "api_name": "Test Case 10: Show Information of an IPv6 Port",
- "value": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_show_port"
- ]
- },
- {
- "api_name": "Test Case 11: Add Multiple Interfaces for an IPv6 Router",
- "value": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_multiple_router_interfaces"
- ]
- },
- {
- "api_name": "Test Case 12: Add and Remove an IPv6 Router Interface with port_id",
- "value": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_remove_router_interface_with_port_id"
- ]
- },
- {
- "api_name": "Test Case 13: Add and Remove an IPv6 Router Interface with subnet_id",
- "value": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_remove_router_interface_with_subnet_id"
- ]
- },
- {
- "api_name": "Test Case 14: Create, Update, Delete, List and Show an IPv6 Router",
- "value": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_create_show_list_update_delete_router"
- ]
- },
- {
- "api_name": "Test Case 15: Create, Update, Delete, List and Show an IPv6 Security Group",
- "value": [
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_create_list_update_show_delete_security_group"
- ]
- },
- {
- "api_name": "Test Case 16: Create, Delete and Show Security Group Rules",
- "value": [
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_create_show_delete_security_group_rule"
- ]
- },
- {
- "api_name": "Test Case 17: List All Security Groups",
- "value": [
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_list_security_groups"
- ]
- },
- {
- "api_name": "Test Case 18: IPv6 Address Assignment - Dual Stack, SLAAC, DHCPv6 Stateless",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dhcp6_stateless_from_os"
- ]
- },
- {
- "api_name": "Test Case 19: IPv6 Address Assignment - Dual Net, Dual Stack, SLAAC, DHCPv6 Stateless",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_dhcp6_stateless_from_os"
- ]
- },
- {
- "api_name": "Test Case 20: IPv6 Address Assignment - Multiple Prefixes, Dual Stack, SLAAC, DHCPv6 Stateless",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_multi_prefix_dhcpv6_stateless"
- ]
- },
- {
- "api_name": "Test Case 21: IPv6 Address Assignment - Dual Net, Multiple Prefixes, Dual Stack, SLAAC, DHCPv6 Stateless",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_multi_prefix_dhcpv6_stateless"
- ]
- },
- {
- "api_name": "Test Case 22: IPv6 Address Assignment - Dual Stack, SLAAC",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_slaac_from_os"
- ]
- },
- {
- "api_name": "Test Case 23: IPv6 Address Assignment - Dual Net, Dual Stack, SLAAC",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_slaac_from_os"
- ]
- },
- {
- "api_name": "Test Case 24: IPv6 Address Assignment - Multiple Prefixes, Dual Stack, SLAAC",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_multi_prefix_slaac"
- ]
- },
- {
- "api_name": "Test Case 25: IPv6 Address Assignment - Dual Net, Dual Stack, Multiple Prefixes, SLAAC",
- "value": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_multi_prefix_slaac"
- ]
- }
- ]
- }
- ]
- }
-}
diff --git a/cvp/3rd_party/static/testapi-ui/components/guidelines/data/gen.py b/cvp/3rd_party/static/testapi-ui/components/guidelines/data/gen.py
deleted file mode 100644
index 34fb6941..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/guidelines/data/gen.py
+++ /dev/null
@@ -1,16 +0,0 @@
-import json
-
-with open('danube.json') as f:
- data = json.load(f)
-mapping = {}
-for i in data['mandatory']['value']:
- for j in i['value']:
- for k in j['value']:
- mapping[k] = True
-for i in data['optional']['value']:
- for j in i['value']:
- for k in j['value']:
- mapping[k] = False
-
-with open('mandatory.json', 'w') as f:
- f.write(json.dumps(mapping))
diff --git a/cvp/3rd_party/static/testapi-ui/components/guidelines/data/mandatory.json b/cvp/3rd_party/static/testapi-ui/components/guidelines/data/mandatory.json
deleted file mode 100644
index ce2ba857..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/guidelines/data/mandatory.json
+++ /dev/null
@@ -1,248 +0,0 @@
-{
- "opnfv.ha.tc001.nova-api_service_down": true,
- "opnfv.ha.tc003.neutron-server_service_down": true,
- "opnfv.ha.tc004.keystone_service_down": true,
- "opnfv.ha.tc005.glance-api_service_down": true,
- "opnfv.ha.tc006.cinder-api_service_down": true,
- "opnfv.ha.tc009.cpu_overload": true,
- "opnfv.ha.tc010.disk_I/O_block": true,
- "opnfv.ha.tc011.load_balance_service_down": true,
- "opnfv.sdnvpn.router_association": false,
- "opnfv.sdnvpn.router_association_floating_ip": false,
- "opnfv.sdnvpn.subnet_connectivity": false,
- "opnfv.sdnvpn.tenant separation": false,
- "tempest.api.compute.images.test_images_oneserver.ImagesOneServerTestJSON.test_create_delete_image": true,
- "tempest.api.compute.images.test_images_oneserver.ImagesOneServerTestJSON.test_create_image_specify_multibyte_character_image_name": true,
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_host_name_is_same_as_server_name": true,
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_list_servers": true,
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_list_servers_with_detail": true,
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_created_server_vcpus": true,
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_server_details": true,
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_host_name_is_same_as_server_name": true,
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_list_servers": true,
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_list_servers_with_detail": true,
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_created_server_vcpus": true,
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_server_details": true,
- "tempest.api.compute.servers.test_instance_actions.InstanceActionsTestJSON.test_get_instance_action": true,
- "tempest.api.compute.servers.test_instance_actions.InstanceActionsTestJSON.test_list_instance_actions": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_flavor": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_image": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_server_name": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_server_status": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_limit_results": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_flavor": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_image": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_limit": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_server_name": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_server_status": true,
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filtered_by_name_wildcard": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_changes_since_future_date": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_changes_since_invalid_date": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_greater_than_actual_count": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_pass_negative_value": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_pass_string": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_flavor": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_image": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_server_name": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_detail_server_is_deleted": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_status_non_existing": true,
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_with_a_deleted_server": true,
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_lock_unlock_server": true,
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_reboot_server_hard": true,
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_rebuild_server": true,
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_stop_start_server": true,
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_delete_server_metadata_item": true,
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_get_server_metadata_item": true,
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_list_server_metadata": true,
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_set_server_metadata": true,
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_set_server_metadata_item": true,
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_update_server_metadata": true,
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_server_with_admin_password": true,
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_specify_keypair": true,
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_with_existing_server_name": true,
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_access_server_address": true,
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_server_name": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_numeric_server_name": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_server_metadata_exceeds_length_limit": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_server_name_length_exceeds_256": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_flavor": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_image": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_network_uuid": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_delete_server_pass_id_exceeding_length_limit": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_delete_server_pass_negative_id": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_get_non_existent_server": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_invalid_ip_v6_address": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_reboot_non_existent_server": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_rebuild_deleted_server": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_rebuild_non_existent_server": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_server_name_blank": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_stop_non_existent_server": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_name_of_non_existent_server": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_server_name_length_exceeds_256": true,
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_server_set_empty_name": true,
- "tempest.api.compute.test_quotas.QuotasTestJSON.test_get_default_quotas": true,
- "tempest.api.compute.test_quotas.QuotasTestJSON.test_get_quotas": true,
- "tempest.api.compute.test_versions.TestVersions.test_list_api_versions": true,
- "tempest.api.compute.volumes.test_attach_volume.AttachVolumeTestJSON.test_attach_detach_volume": true,
- "tempest.api.compute.volumes.test_attach_volume.AttachVolumeTestJSON.test_list_get_volume_attachments": true,
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_media_types": true,
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_resources": true,
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_statuses": true,
- "tempest.api.identity.v3.test_tokens.TokensV3Test.test_create_token": true,
- "tempest.api.image.v2.test_images.BasicOperationsImagesTest.test_delete_image": true,
- "tempest.api.image.v2.test_images.BasicOperationsImagesTest.test_update_image": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_get_image_schema": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_get_images_schema": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_container_format": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_disk_format": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_limit": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_min_max_size": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_size": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_status": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_images_param_visibility": true,
- "tempest.api.image.v2.test_images.ListImagesTest.test_list_no_params": true,
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_delete_image_null_id": true,
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_delete_non_existing_image": true,
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_delete_deleted_image": true,
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_image_null_id": true,
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_non_existent_image": true,
- "tempest.api.image.v2.test_images_tags.ImagesTagsTest.test_update_delete_tags_for_image": true,
- "tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest.test_delete_non_existing_tag": true,
- "tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest.test_update_tags_for_non_existing_image": true,
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_network": false,
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_port": false,
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_subnet": false,
- "tempest.api.network.test_networks.NetworksIpV6Test.test_create_update_delete_network_subnet": false,
- "tempest.api.network.test_networks.NetworksIpV6Test.test_external_network_visibility": false,
- "tempest.api.network.test_networks.NetworksIpV6Test.test_list_networks": false,
- "tempest.api.network.test_networks.NetworksIpV6Test.test_list_subnets": false,
- "tempest.api.network.test_networks.NetworksIpV6Test.test_show_network": false,
- "tempest.api.network.test_networks.NetworksIpV6Test.test_show_subnet": false,
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_all_attributes": true,
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_allocation_pools": true,
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_dhcp_enabled": true,
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_gw": true,
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_gw_and_allocation_pools": true,
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_host_routes_and_dns_nameservers": true,
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_without_gateway": true,
- "tempest.api.network.test_networks.NetworksTest.test_create_update_delete_network_subnet": true,
- "tempest.api.network.test_networks.NetworksTest.test_delete_network_with_subnet": true,
- "tempest.api.network.test_networks.NetworksTest.test_list_networks": true,
- "tempest.api.network.test_networks.NetworksTest.test_list_networks_fields": true,
- "tempest.api.network.test_networks.NetworksTest.test_list_subnets": true,
- "tempest.api.network.test_networks.NetworksTest.test_list_subnets_fields": true,
- "tempest.api.network.test_networks.NetworksTest.test_show_network": true,
- "tempest.api.network.test_networks.NetworksTest.test_show_network_fields": true,
- "tempest.api.network.test_networks.NetworksTest.test_show_subnet": true,
- "tempest.api.network.test_networks.NetworksTest.test_show_subnet_fields": true,
- "tempest.api.network.test_networks.NetworksTest.test_update_subnet_gw_dns_host_routes_dhcp": true,
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_port_in_allowed_allocation_pools": false,
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_port_with_no_securitygroups": false,
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_update_delete_port": false,
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_list_ports": false,
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_show_port": false,
- "tempest.api.network.test_ports.PortsTestJSON.test_create_bulk_port": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_create_port_in_allowed_allocation_pools": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_create_update_delete_port": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_list_ports": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_list_ports_fields": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_show_port": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_show_port_fields": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_update_port_with_security_group_and_extra_attributes": true,
- "tempest.api.network.test_ports.PortsTestJSON.test_update_port_with_two_security_groups_and_extra_attributes": true,
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_multiple_router_interfaces": false,
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_remove_router_interface_with_port_id": false,
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_remove_router_interface_with_subnet_id": false,
- "tempest.api.network.test_routers.RoutersIpV6Test.test_create_show_list_update_delete_router": false,
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_create_list_update_show_delete_security_group": false,
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_create_show_delete_security_group_rule": false,
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_list_security_groups": false,
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_list_update_show_delete_security_group": true,
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_additional_args": true,
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_icmp_type_code": true,
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_protocol_integer_value": true,
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_remote_group_id": true,
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_remote_ip_prefix": true,
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_show_delete_security_group_rule": true,
- "tempest.api.network.test_security_groups.SecGroupTest.test_list_security_groups": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_additional_default_security_group_fails": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_duplicate_security_group_rule_fails": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_ethertype": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_protocol": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_remote_ip_prefix": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_invalid_ports": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_non_existent_remote_groupid": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_non_existent_security_group": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_delete_non_existent_security_group": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_show_non_existent_security_group": true,
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_show_non_existent_security_group_rule": true,
- "tempest.api.volume.test_availability_zone.AvailabilityZoneV2TestJSON.test_get_availability_zone_list": true,
- "tempest.api.volume.test_extensions.ExtensionsV2TestJSON.test_list_extensions": true,
- "tempest.api.volume.test_snapshot_metadata.SnapshotV2MetadataTestJSON.test_create_get_delete_snapshot_metadata": true,
- "tempest.api.volume.test_snapshot_metadata.SnapshotV2MetadataTestJSON.test_update_snapshot_metadata_item": true,
- "tempest.api.volume.test_volume_metadata.VolumesV2MetadataTest.test_create_get_delete_volume_metadata": true,
- "tempest.api.volume.test_volume_metadata.VolumesV2MetadataTest.test_update_volume_metadata_item": true,
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_attach_detach_volume_to_instance": true,
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_get_volume_attachment": true,
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_reserve_unreserve_volume": true,
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_volume_bootable": true,
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_volume_readonly_update": true,
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete": true,
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete_as_clone": true,
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete_from_image": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_by_name": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_by_name": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_param_display_name_and_status": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_detail_param_display_name_and_status": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_detail_param_metadata": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_details": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_param_metadata": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_by_availability_zone": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_by_status": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_details_by_availability_zone": true,
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_details_by_status": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_attach_volumes_with_nonexistent_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_invalid_size": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_snapshot_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_source_volid": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_volume_type": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_out_passing_size": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_size_negative": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_size_zero": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_delete_invalid_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_delete_volume_without_passing_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_detach_volumes_with_invalid_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_get_invalid_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_get_volume_without_passing_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_detail_with_invalid_status": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_detail_with_nonexistent_name": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_with_invalid_status": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_with_nonexistent_name": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_reserve_volume_with_negative_volume_status": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_reserve_volume_with_nonexistent_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_unreserve_volume_with_nonexistent_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_empty_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_invalid_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_nonexistent_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_volume_delete_nonexistent_volume_id": true,
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_volume_get_nonexistent_volume_id": true,
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_snapshot_create_get_list_update_delete": true,
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_snapshots_list_details_with_params": true,
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_snapshots_list_with_params": true,
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_volume_from_snapshot": true,
- "tempest.api.volume.test_volumes_snapshots_negative.VolumesV2SnapshotNegativeTestJSON.test_create_snapshot_with_nonexistent_volume_id": true,
- "tempest.api.volume.test_volumes_snapshots_negative.VolumesV2SnapshotNegativeTestJSON.test_create_snapshot_without_passing_volume_id": true,
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_pagination": true,
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_with_multiple_params": true,
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_pagination": true,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dhcp6_stateless_from_os": false,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_dhcp6_stateless_from_os": false,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_multi_prefix_dhcpv6_stateless": false,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_multi_prefix_slaac": false,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_slaac_from_os": false,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_multi_prefix_dhcpv6_stateless": false,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_multi_prefix_slaac": false,
- "tempest.scenario.test_network_v6.TestGettingAddress.test_slaac_from_os": false
-}
diff --git a/cvp/3rd_party/static/testapi-ui/components/guidelines/guidelines.html b/cvp/3rd_party/static/testapi-ui/components/guidelines/guidelines.html
deleted file mode 100644
index 6e138b89..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/guidelines/guidelines.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<h3>OPNFV Ready&#8482; Guidelines</h3>
-
-<!-- Guideline Filters -->
-<div class="row">
- <div class="col-md-3">
- <strong>Version:</strong>
- <!-- Slicing the version file name here gets rid of the '.json' file extension -->
- <select ng-model="ctrl.version"
- ng-change="ctrl.update()"
- class="form-control"
- ng-options="versionFile.slice(0,10) for versionFile in ctrl.versionList">
- </select>
- </div>
- <!--
- <div class="col-md-4">
- <strong>Target Program:</strong>
- <span class="program-about"><a target="_blank" href="http://www.openstack.org/brand/interop/">About</a></span>
- <select ng-model="ctrl.target" class="form-control" ng-change="ctrl.updateTargetCapabilities()">
- <option value="platform">OpenStack Powered Platform</option>
- <option value="compute">OpenStack Powered Compute</option>
- <option value="object">OpenStack Powered Object Storage</option>
- </select>
- </div>
- -->
-</div>
-
-<br />
-<!--
-<div ng-if="ctrl.guidelines">
- <strong>Guideline Status:</strong>
- {{ctrl.guidelines.status | capitalize}}
-</div>
-
-<div ng-show="ctrl.guidelines">
- <strong>Corresponding OpenStack Releases:</strong>
- <ul class="list-inline">
- <li ng-repeat="release in ctrl.guidelines.releases">
- {{release | capitalize}}
- </li>
- </ul>
-</div>
--->
-
-<strong>Capability Status:</strong>
-<div class="checkbox">
- <label>
- <input type="checkbox" ng-model="ctrl.showMandatory">
- <span class="mandatory">Mandatory</span>
- </label>
- <label>
- <input type="checkbox" ng-model="ctrl.showOptional">
- <span class="optional">Optional</span>
- </label>
-</div>
-<!-- End Capability Filters -->
-
-<!-- Loading animation divs -->
-<div cg-busy="{promise:ctrl.versionsRequest,message:'Loading versions'}"></div>
-<div cg-busy="{promise:ctrl.capsRequest,message:'Loading capabilities'}"></div>
-
-<!-- Get the version-specific template -->
-<div nf-show="ctrl.data" ng-include src="ctrl.detailsTemplate"></div>
-
-<!--
-<div ng-show="ctrl.showError" class="alert alert-danger" role="alert">
- <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
- <span class="sr-only">Error:</span>
- {{ctrl.error}}
-</div>
--->
diff --git a/cvp/3rd_party/static/testapi-ui/components/guidelines/guidelinesController.js b/cvp/3rd_party/static/testapi-ui/components/guidelines/guidelinesController.js
deleted file mode 100644
index 46d2042a..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/guidelines/guidelinesController.js
+++ /dev/null
@@ -1,188 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('GuidelinesController', GuidelinesController);
-
- GuidelinesController.$inject = ['$http', '$uibModal', 'testapiApiUrl'];
-
- /**
- * TestAPI Guidelines Controller
- * This controller is for the '/guidelines' page where a user can browse
- * through tests belonging to Interop WG defined capabilities.
- */
- function GuidelinesController($http, $uibModal, testapiApiUrl) {
- var ctrl = this;
-
- ctrl.getVersionList = getVersionList;
- ctrl.update = update;
-
- ctrl.showMandatory = true;
- ctrl.showOptional = false;
- ctrl.version = '';
- ctrl.data = null;
-
- /**
- * The template to load for displaying capability details.
- */
- ctrl.detailsTemplate = 'testapi-ui/components/guidelines/partials/' +
- 'guidelineDetails.html';
-
- /**
- * Retrieve an array of available guideline files from the TestAPI
- * API server, sort this array reverse-alphabetically, and store it in
- * a scoped variable. The scope's selected version is initialized to
- * the latest (i.e. first) version here as well. After a successful API
- * call, the function to update the capabilities is called.
- * Sample API return array: ["2015.03.json", "2015.04.json"]
- */
- function getVersionList() {
- ctrl.versionList = ['danube'];
- ctrl.update();
- }
-
- /**
- * This will contact the TestAPI API server to retrieve the JSON
- * content of the guideline file corresponding to the selected
- * version.
- */
- function update() {
- if (ctrl.version != ''){
- var path = 'testapi-ui/components/guidelines/data/' + ctrl.version + '.json';
- $http.get(path).success(function(data){
- ctrl.data = data;
- }).error(function(error){
- });
- }
- }
-
-
- ctrl.getVersionList();
- }
-
-
-
-
-
- angular
- .module('testapiApp')
- .controller('TestListModalController', TestListModalController);
-
- TestListModalController.$inject = [
- '$uibModalInstance', '$http', 'version',
- 'target', 'status', 'testapiApiUrl'
- ];
-
- /**
- * Test List Modal Controller
- * This controller is for the modal that appears if a user wants to see the
- * test list corresponding to Interop WG capabilities with the selected
- * statuses.
- */
- function TestListModalController($uibModalInstance, $http, version,
- target, status, testapiApiUrl) {
-
- var ctrl = this;
-
- ctrl.version = version;
- ctrl.target = target;
- ctrl.status = status;
- ctrl.close = close;
- ctrl.updateTestListString = updateTestListString;
-
- ctrl.aliases = true;
- ctrl.flagged = false;
-
- // Check if the API URL is absolute or relative.
- if (testapiApiUrl.indexOf('http') > -1) {
- ctrl.url = testapiApiUrl;
- }
- else {
- ctrl.url = location.protocol + '//' + location.host +
- testapiApiUrl;
- }
-
- /**
- * This function will close/dismiss the modal.
- */
- function close() {
- $uibModalInstance.dismiss('exit');
- }
-
- /**
- * This function will return a list of statuses based on which ones
- * are selected.
- */
- function getStatusList() {
- var statusList = [];
- angular.forEach(ctrl.status, function(value, key) {
- if (value) {
- statusList.push(key);
- }
- });
- return statusList;
- }
-
- /**
- * This will get the list of tests from the API and update the
- * controller's test list string variable.
- */
- function updateTestListString() {
- var statuses = getStatusList();
- if (!statuses.length) {
- ctrl.error = 'No tests matching selected criteria.';
- return;
- }
- ctrl.testListUrl = [
- ctrl.url, '/guidelines/', ctrl.version, '/tests?',
- 'target=', ctrl.target, '&',
- 'type=', statuses.join(','), '&',
- 'alias=', ctrl.aliases.toString(), '&',
- 'flag=', ctrl.flagged.toString()
- ].join('');
- ctrl.testListRequest =
- $http.get(ctrl.testListUrl).
- then(function successCallback(response) {
- ctrl.error = null;
- ctrl.testListString = response.data;
- if (!ctrl.testListString) {
- ctrl.testListCount = 0;
- }
- else {
- ctrl.testListCount =
- ctrl.testListString.split('\n').length;
- }
- }, function errorCallback(response) {
- ctrl.testListString = null;
- ctrl.testListCount = null;
- if (angular.isObject(response.data) &&
- response.data.message) {
- ctrl.error = 'Error retrieving test list: ' +
- response.data.message;
- }
- else {
- ctrl.error = 'Unknown error retrieving test list.';
- }
- });
- }
-
- // updateTestListString();
- //getVersionList();
- update();
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/guidelines/partials/guidelineDetails.html b/cvp/3rd_party/static/testapi-ui/components/guidelines/partials/guidelineDetails.html
deleted file mode 100644
index 05a1ef5c..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/guidelines/partials/guidelineDetails.html
+++ /dev/null
@@ -1,90 +0,0 @@
-<!--
-HTML for guidelines page for all OpenStack Powered (TM) guideline schemas
-This expects the JSON data of the guidelines file to be stored in scope
-variable 'guidelines'.
--->
-
-<h3 ng-show="ctrl.showMandatory">{{ctrl.data.mandatory.name}}</h3>
-<div ng-repeat="area in ctrl.data.mandatory.value" ng-show="ctrl.showMandatory">
- <h4>{{area.area_name}}</h4>
- <ol class="capabilities">
- <li class="capability-list-item" ng-repeat="api in area.value">
- <span class="capability-name">{{api.api_name}}</span><br />
- Area: <em>{{area.area_name}}</em><br />
- Status: <span>Mandatory</span><br />
-
- <a ng-click="showTests = !showTests">Tests ({{api.value.length}})</a>
- <ul uib-collapse="!showTests">
- <li ng-repeat="test in api.value">
- <span ng-class="{'glyphicon glyphicon-flag text-warning': capability.flagged.indexOf(test) > -1}"></span>
- {{test}}
- </li>
- </ul>
- </li>
- </ol>
-</div>
-
-<h3 ng-show="ctrl.showOptional">{{ctrl.data.optional.name}}</h3>
-<div ng-repeat="area in ctrl.data.optional.value" ng-show="ctrl.showOptional">
- <h4>{{area.area_name}}</h4>
- <ol class="capabilities">
- <li class="capability-list-item" ng-repeat="api in area.value">
- <span class="capability-name">{{api.api_name}}</span><br />
- Status: <span>Optional</span><br />
-
- <a ng-click="showTests = !showTests">Tests ({{api.value.length}})</a>
- <ul uib-collapse="!showTests">
- <li ng-repeat="test in api.value">
- <span ng-class="{'glyphicon glyphicon-flag text-warning': capability.flagged.indexOf(test) > -1}"></span>
- {{test}}
- </li>
- </ul>
- </li>
- </ol>
-</div>
-<!--
-<ol ng-show="ctrl.data" class="capabilities">
- <li class="capability-list-item" ng-repeat="capability in ctrl.guidelines.capabilities | arrayConverter | filter:ctrl.filterStatus | orderBy:'id'">
- <span class="capability-name">{{capability.id}}</span><br />
- <em>{{capability.description}}</em><br />
- Status: <span class="{{ctrl.targetCapabilities[capability.id]}}">{{ctrl.targetCapabilities[capability.id]}}</span><br />
- <span ng-if="capability.project">Project: {{capability.project | capitalize}}<br /></span>
- <a ng-click="showAchievements = !showAchievements">Achievements ({{capability.achievements.length}})</a><br />
- <ol uib-collapse="!showAchievements" class="list-inline">
- <li ng-repeat="achievement in capability.achievements">
- {{achievement}}
- </li>
- </ol>
-
- <a ng-click="showTests = !showTests">Tests ({{ctrl.getObjectLength(capability.tests)}})</a>
- <ul uib-collapse="!showTests">
- <li ng-if="ctrl.guidelines.schema === '1.2'" ng-repeat="test in capability.tests">
- <span ng-class="{'glyphicon glyphicon-flag text-warning': capability.flagged.indexOf(test) > -1}"></span>
- {{test}}
- </li>
- <li ng-if="ctrl.guidelines.schema > '1.2'" ng-repeat="(testName, testDetails) in capability.tests">
- <span ng-class="{'glyphicon glyphicon-flag text-warning': testDetails.flagged}" title="{{testDetails.flagged.reason}}"></span>
- {{testName}}
- <div class="test-detail" ng-if="testDetails.aliases">
- <strong>Aliases:</strong>
- <ul><li ng-repeat="alias in testDetails.aliases">{{alias}}</li></ul>
- </div>
- </li>
- </ul>
- </li>
-</ol>
-
-<div ng-show="ctrl.guidelines" class="criteria">
- <hr>
- <h4><a ng-click="showCriteria = !showCriteria">Criteria</a></h4>
- <div uib-collapse="showCriteria">
- <ul>
- <li ng-repeat="(key, criterion) in ctrl.guidelines.criteria">
- <span class="criterion-name">{{criterion.name}}</span><br />
- <em>{{criterion.Description}}</em><br />
- Weight: {{criterion.weight}}
- </li>
- </ul>
- </div>
-</div>
--->
diff --git a/cvp/3rd_party/static/testapi-ui/components/guidelines/partials/testListModal.html b/cvp/3rd_party/static/testapi-ui/components/guidelines/partials/testListModal.html
deleted file mode 100644
index 5b1d698d..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/guidelines/partials/testListModal.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<div class="modal-content">
- <div class="modal-header">
- <button type="button" class="close" aria-hidden="true" ng-click="modal.close()">&times;</button>
- <h4>Test List ({{modal.testListCount}})</h4>
- <p>Use this test list with <a title="testapi-client" target="_blank"href="https://github.com/openstack/testapi-client">testapi-client</a>
- to run only tests in the {{modal.version}} OpenStack Powered&#8482; guideline from capabilities with the following statuses:
- </p>
- <ul class="list-inline">
- <li class="required" ng-if="modal.status.required"> Required</li>
- <li class="advisory" ng-if="modal.status.advisory"> Advisory</li>
- <li class="deprecated" ng-if="modal.status.deprecated"> Deprecated</li>
- <li class="removed" ng-if="modal.status.removed"> Removed</li>
- </ul>
- <div class="checkbox checkbox-test-list">
- <label><input type="checkbox" ng-model="modal.aliases" ng-change="modal.updateTestListString()">Aliases</label>
- <span class="glyphicon glyphicon-info-sign info-hover" aria-hidden="true"
- title="Include test aliases as tests may have been renamed over time. It does not hurt to include these."></span>
- &nbsp;
- <label><input type="checkbox" ng-model="modal.flagged" ng-change="modal.updateTestListString()">Flagged</label>
- <span class="glyphicon glyphicon-info-sign info-hover" aria-hidden="true"
- title="Include flagged tests.">
- </span>
- </div>
- <p ng-hide="modal.error"> Alternatively, get the test list directly from the API on your CLI:</p>
- <code ng-hide="modal.error">wget "{{modal.testListUrl}}" -O {{modal.version}}-test-list.txt</code>
- </div>
- <div class="modal-body tests-modal-content">
- <div cg-busy="{promise:modal.testListRequest,message:'Loading'}"></div>
- <div ng-show="modal.error" class="alert alert-danger" role="alert">
- <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
- <span class="sr-only">Error:</span>
- {{modal.error}}
- </div>
- <div class="form-group">
- <textarea class="form-control" rows="16" id="tests" wrap="off">{{modal.testListString}}</textarea>
- </div>
- </div>
- <div class="modal-footer">
- <a target="_blank" href="{{modal.testListUrl}}" download="{{modal.version + '-test-list.txt'}}">
- <button class="btn btn-primary" ng-if="modal.testListCount > 0" type="button">
- Download
- </button>
- </a>
- <button class="btn btn-primary" type="button" ng-click="modal.close()">Close</button>
- </div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/home/home.html b/cvp/3rd_party/static/testapi-ui/components/home/home.html
deleted file mode 100644
index 184980b3..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/home/home.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<div class="container-fluid">
- <div class="row">
- <div class="col-md-2 home-category" ng-style="{'height': ctrl.height}">
- <div class="panel-group" id="accordion">
- <div class="panel panel-default">
- <div class="panel-heading">
- <div class="panel-title">
- <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
- Governance & Workflow
- </a>
- </div>
- </div>
- <div id="collapseOne" class="panel-collapse collapse">
- <div class="panel-body">
- <div><a href="https://www.opnfv.org/verified" target="_blank">Overview&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <div><a href="https://www.opnfv.org/wp-content/uploads/sites/12/2018/01/OVP-Governance-Guidelines-1.0.1-012218.pdf" target="_blank">Governance Guidelines&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <div><a href="https://www.opnfv.org/wp-content/uploads/sites/12/2018/01/OVP-Terms-and-Conditions-011918.pdf" target="_blank">Terms & Conditions&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <div><a href="http://docs.opnfv.org/en/stable-danube/submodules/dovetail/docs/testing/user/certificationworkflow/index.html
- " target="_blank">Process Workflow&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <div><a href="https://na3.docusign.net/Member/PowerFormSigning.aspx?PowerFormId=579ac00d-0a1f-4db3-82ea-ddd977769a60" target="_blank">Participation Form&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <!--
- <div><a target="_blank">Approved 3rd Party Labs&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- -->
- </div> </div>
- </div>
- <div class="panel panel-default" style="margin-top:0px">
- <div class="panel-heading">
- <div class="panel-title">
- <a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
- Training Resources
- </a>
- </div>
- </div>
- <div id="collapseTwo" class="panel-collapse collapse">
- <div class="panel-body">
- <div><a href="http://docs.opnfv.org/en/stable-danube/submodules/dovetail/docs/testing/user/userguide/testing_guide.html
- " target="_blank">OVP / Dovetail User Guide&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <!--
- <div><a href="https://wiki.opnfv.org/download/attachments/11698759/Dovetail%20CVP%20Tutorial.ppt?version=2&modificationDate=1508175962000&api=v2
- " target="_blank">OVP / Dovetail Tutorial Slides&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- -->
- <div><a href="http://docs.opnfv.org/en/stable-danube/submodules/dovetail/docs/testing/user/userguide/cli_reference.html
- " target="_blank">Dovetail CLI&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <div><a href="http://docs.opnfv.org/en/stable-danube/submodules/dovetail/docs/testing/user/testspecification" target="_blank">Test Specifications&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- </div>
- </div>
- </div>
- <div class="panel panel-default" style="margin-top:0px">
- <div class="panel-heading">
- <div class="panel-title">
- <a data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
- Release Information
- </a>
- </div>
- </div>
- <div id="collapseThree" class="panel-collapse collapse">
- <div class="panel-body">
- <div><a href="http://docs.opnfv.org/en/stable-danube/submodules/dovetail/docs/release/release-notes/index.html
- " target="_blank">2018.01 Release Notes&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="ture"></span></a></div>
- <div><a href="http://docs.opnfv.org/en/stable-danube/submodules/dovetail/docs/testing/user/reviewerguide/index.html
- " target="_blank">2018.01 Reviewer Guide&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <div><a href="http://docs.opnfv.org/en/stable-danube/submodules/dovetail/docs/testing/user/ovpaddendum/index.html
- " target="_blank">2018.01 Guidelines Addendum&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <div><a href="https://www.opnfv.org/wp-content/uploads/sites/12/2018/05/OPNFV_Verified_BrandGuide_021618.pdf
- " target="_blank">OPNFV Verified Brand Guidelines&nbsp<span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></div>
- <!--
- <div><a target="_blank">FAQ</a></div>
- <div><a target="_blank">Known issues</a></div>
- <div><a target="_blank">Dovetail and dependent container versioning</a></div>
- <div><a target="_blank">Other - TBD</a></div>
- -->
- </div>
- </div>
- </div>
- <!--
- <div class="panel panel-default" style="margin-top:0px">
- <div class="panel-heading">
- <div class="panel-title">
- <a data-toggle="collapse" data-parent="#accordion" href="#collapseFour">
- OVP Registry
- </a>
- </div>
- </div>
- <div id="collapseFour" class="panel-collapse collapse">
- <div class="panel-body">
- </div>
- </div>
- </div>
- -->
- </div>
- </div>
-
- <div class="col-md-10">
- <div class="common-main-container">
- <div class="home-content-title">
- <h1>OPNFV is offering an OPNFV Verified Program (OVP) that verifies products and services with the "OPNFV Verified" mark.</h1>
- </div>
- <div class="home-content">
- <div class="col-md-2">
- <img class="home-content-img" src="testapi-ui/assets/img/icon.png" />
- </div>
- <div class="col-md-10">
- <p class="home-content-text" style="padding-bottom:40px;">
- The OPNFV Verified program demonstrates the readiness and availability of commercial products based on OPNFV.
- Verified products and services submitted by vendors and service providers become compliant by implementing explicitly defined interfaces,
- behaviors and key features while retaining distinct and value-added innovations across features and capabilities.
- Navigate through the links in the left-hand menu to learn more and get started. You'll find step-step-instructions as well as a participation form.
- Use this portal to upload your test results when ready. Please send any questions to verified@opnfv.org<sup><span class="glyphicon glyphicon-envelope" style="font-size:60%;" aria-hidden="true"></span></sup>.
- </p>
- </div>
- </div>
- <div id="directory_break">
- </div>
- <div class="home-content-title">
- <h1>OPNFV Verified Products Directory</h1>
- Click on rows for more product verification details per company.
- </div>
- <div class="directory_main">
- <table id="directory_inner" class="">
- <thead>
- <tr>
- <th>Company</th>
- <th>Product</th>
- <th>Cateogry</th>
- <th>Version</th>
- </tr>
- </thead>
- <tbody style="overflow: hidden; text-overflow: ellipsis;">
- <tr class="company_row" ng-click="ctrl.getCompany(app)" ng-repeat="app in ctrl.applications | filter:{approved:true} | orderBy : 'approve_date'">
- <td width="400"><img class="company_logo" src="api/v1/cvp/applications/getlogo/{{app.company_logo}}" />{{ app.organization_name}}</td>
- <td width="300">{{ app.product_name}}</td>
- <td width="150">{{ app.ovp_category}}</td>
- <td width="150">{{ app.ovp_version}}</td>
- </tr>
- </tbody>
- </table>
- </div>
-
- </div>
- </div>
- </div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/home/homeController.js b/cvp/3rd_party/static/testapi-ui/components/home/homeController.js
deleted file mode 100644
index bed86ab7..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/home/homeController.js
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('HomeController', HomeController);
-
- HomeController.$inject = [
- '$http', '$scope', '$rootScope', '$state', 'testapiApiUrl'
- ];
-
- /**
- * TestAPI Results Controller
- * This controller is for the '/results' page where a user can browse
- * a listing of community uploaded results.
- */
- function HomeController($http, $scope, $rootScope, $state, testapiApiUrl) {
- var ctrl = this;
- getApplication();
-
- ctrl.height = $(document).height() + 500;
-
- ctrl.gotoApplication = function(){
- if($rootScope.auth.isAuthenticated){
- $state.go('application');
- }else{
- $rootScope.auth.doSignIn('cas');
- }
- }
-
- function getApplication(){
- $http.get(testapiApiUrl + "/cvp/applications").then(function(response){
- ctrl.applications = response.data.applications;
- }, function(error){
- });
- }
-
- ctrl.getCompany = function(row){
- //console.log(row)
- $state.go('directory', {'companyID': row.organization_name, 'logo': row.company_logo});
- }
-
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/logout/logout.html b/cvp/3rd_party/static/testapi-ui/components/logout/logout.html
deleted file mode 100644
index 38a5c369..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/logout/logout.html
+++ /dev/null
@@ -1 +0,0 @@
-<div cg-busy="{promise:ctrl.redirectWait,message:'Logging you out...'}"></div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/logout/logoutController.js b/cvp/3rd_party/static/testapi-ui/components/logout/logoutController.js
deleted file mode 100644
index 1b6d78c6..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/logout/logoutController.js
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('LogoutController', LogoutController);
-
- LogoutController.$inject = [
- '$location', '$window', '$timeout'
- ];
-
- /**
- * TestAPI Logout Controller
- * This controller handles logging out. In order to fully logout, the
- * openstackid_session cookie must also be removed. The way to do that
- * is to have the user's browser make a request to the openstackid logout
- * page. We do this by placing the logout link as the src for an html
- * image. After some time, the user is redirected home.
- */
- function LogoutController($location, $window, $timeout) {
- var ctrl = this;
-
- ctrl.openid_logout_url = $location.search().openid_logout;
- var img = new Image(0, 0);
- img.src = ctrl.openid_logout_url;
- ctrl.redirectWait = $timeout(function() {
- $window.location.href = '/';
- }, 500);
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html b/cvp/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html
deleted file mode 100644
index 0f55c27f..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<div class="modal-header">
- <h4>Import Public Key</h4>
- <p>Instructions for adding a public key and signature can be found
- <a href="https://github.com/openstack/refstack/blob/master/doc/source/uploading_private_results.rst#generate-ssh-keys-locally"
- target="_blank"
- title="How to generate and upload SSH key and signature with testapi-client">here.
- </a>
- </p>
-</div>
-<div class="modal-body container-fluid">
- <div class="row">
- <div class="col-md-2">Public Key</div>
- <div class="col-md-9 pull-right">
- <textarea type="text" rows="10" cols="42" ng-model="modal.raw_key" required></textarea>
- </div>
- </div>
- <div class="row">
- <div class="col-md-2">Signature</div>
- <div class="col-md-9 pull-right">
- <textarea type="text" rows="10" cols="42" ng-model="modal.self_signature" required></textarea>
- </div>
- </div>
- <div class="modal-footer">
- <button class="btn btn-warning btn-sm" ng-click="modal.cancel()">Cancel</button>
- <button type="button" class="btn btn-default btn-sm" ng-click="modal.importPubKey()">Import Public Key</button>
- </div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/profile.html b/cvp/3rd_party/static/testapi-ui/components/profile/profile.html
deleted file mode 100644
index 98b28df5..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/profile/profile.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<div class="container-fluid common-main-container">
-<h3>User profile</h3>
-<div cg-busy="{promise:ctrl.authRequest,message:'Loading'}"></div>
-<div>
- <table class="table table-striped table-hover">
- <tbody>
- <tr> <td>User name</td> <td>{{auth.currentUser.fullname}}</td> </tr>
- <tr> <td>User OpenId</td> <td>{{auth.currentUser.openid}}</td> </tr>
- <tr> <td>Email</td> <td>{{auth.currentUser.email}}</td> </tr>
- <tr> <td>Role</td> <td> {{auth.currentUser.role}}</td> </tr>
- </tbody>
- </table>
-</div>
-<div ng-show="ctrl.pubkeys">
- <div class="container-fluid">
- <div class="row">
- <div class="col-md-4">
- <h4>User Public Keys</h4>
- </div>
- <div class="col-md-2 pull-right">
- <button type="button" class="btn btn-default btn-sm" ng-click="ctrl.openImportPubKeyModal()">
- <span class="glyphicon glyphicon-plus"></span> Import Public Key
- </button>
- </div>
- </div>
- </div>
-
- <div>
- <table class="table table-striped table-hover">
- <tbody>
- <tr ng-repeat="pubKey in ctrl.pubkeys" ng-click="ctrl.openShowPubKeyModal(pubKey)">
- <td>{{pubKey.format}}</td>
- <td>{{pubKey.shortKey}}</td>
- <td>{{pubKey.comment}}</td>
- </tr>
- </tbody>
- </table>
- </div>
-</div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/profileController.js b/cvp/3rd_party/static/testapi-ui/components/profile/profileController.js
deleted file mode 100644
index 0660e19f..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/profile/profileController.js
+++ /dev/null
@@ -1,219 +0,0 @@
-/*
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .factory('PubKeys', PubKeys);
-
- PubKeys.$inject = ['$resource', 'testapiApiUrl'];
-
- /**
- * This is a provider for the user's uploaded public keys.
- */
- function PubKeys($resource, testapiApiUrl) {
- return $resource(testapiApiUrl + '/profile/pubkeys/:id', null, null);
- }
-
- angular
- .module('testapiApp')
- .controller('ProfileController', ProfileController);
-
- ProfileController.$inject = [
- '$scope', '$http', 'testapiApiUrl', 'PubKeys',
- '$uibModal', 'raiseAlert', '$state'
- ];
-
- /**
- * TestAPI Profile Controller
- * This controller handles user's profile page, where a user can view
- * account-specific information.
- */
- function ProfileController($scope, $http, testapiApiUrl,
- PubKeys, $uibModal, raiseAlert, $state) {
-
- var ctrl = this;
-
- ctrl.updatePubKeys = updatePubKeys;
- ctrl.openImportPubKeyModal = openImportPubKeyModal;
- ctrl.openShowPubKeyModal = openShowPubKeyModal;
-
- // Must be authenticated to view this page.
- if (!$scope.auth.isAuthenticated) {
- $state.go('home');
- }
-
- /**
- * This function will fetch all the user's public keys from the
- * server and store them in an array.
- */
- function updatePubKeys() {
- var keys = PubKeys.query(function() {
- ctrl.pubkeys = [];
- angular.forEach(keys, function (key) {
- ctrl.pubkeys.push({
- 'resource': key,
- 'format': key.format,
- 'shortKey': [
- key.pubkey.slice(0, 10),
- '.',
- key.pubkey.slice(-10)
- ].join('.'),
- 'pubkey': key.pubkey,
- 'comment': key.comment
- });
- });
- });
- }
-
- /**
- * This function will open the modal that will give the user a form
- * for importing a public key.
- */
- function openImportPubKeyModal() {
- $uibModal.open({
- templateUrl: '/components/profile/importPubKeyModal.html',
- backdrop: true,
- windowClass: 'modal',
- controller: 'ImportPubKeyModalController as modal'
- }).result.finally(function() {
- ctrl.updatePubKeys();
- });
- }
-
- /**
- * This function will open the modal that will give the full
- * information regarding a specific public key.
- * @param {Object} pubKey resource
- */
- function openShowPubKeyModal(pubKey) {
- $uibModal.open({
- templateUrl: '/components/profile/showPubKeyModal.html',
- backdrop: true,
- windowClass: 'modal',
- controller: 'ShowPubKeyModalController as modal',
- resolve: {
- pubKey: function() {
- return pubKey;
- }
- }
- }).result.finally(function() {
- ctrl.updatePubKeys();
- });
- }
-
- ctrl.authRequest = $scope.auth.doSignCheck().then(ctrl.updatePubKeys);
- }
-
- angular
- .module('testapiApp')
- .controller('ImportPubKeyModalController', ImportPubKeyModalController);
-
- ImportPubKeyModalController.$inject = [
- '$uibModalInstance', 'PubKeys', 'raiseAlert'
- ];
-
- /**
- * Import Pub Key Modal Controller
- * This controller is for the modal that appears if a user wants to import
- * a public key.
- */
- function ImportPubKeyModalController($uibModalInstance,
- PubKeys, raiseAlert) {
-
- var ctrl = this;
-
- ctrl.importPubKey = importPubKey;
- ctrl.cancel = cancel;
-
- /**
- * This function will save a new public key resource to the API server.
- */
- function importPubKey() {
- var newPubKey = new PubKeys(
- {raw_key: ctrl.raw_key, self_signature: ctrl.self_signature}
- );
- newPubKey.$save(
- function(newPubKey_) {
- raiseAlert('success', '', 'Public key saved successfully');
- $uibModalInstance.close(newPubKey_);
- },
- function(httpResp) {
- raiseAlert('danger',
- httpResp.statusText, httpResp.data.title);
- ctrl.cancel();
- }
- );
- }
-
- /**
- * This function will dismiss the modal.
- */
- function cancel() {
- $uibModalInstance.dismiss('cancel');
- }
- }
-
- angular
- .module('testapiApp')
- .controller('ShowPubKeyModalController', ShowPubKeyModalController);
-
- ShowPubKeyModalController.$inject = [
- '$uibModalInstance', 'raiseAlert', 'pubKey'
- ];
-
- /**
- * Show Pub Key Modal Controller
- * This controller is for the modal that appears if a user wants to see the
- * full details of one of their public keys.
- */
- function ShowPubKeyModalController($uibModalInstance, raiseAlert, pubKey) {
- var ctrl = this;
-
- ctrl.deletePubKey = deletePubKey;
- ctrl.cancel = cancel;
-
- ctrl.pubKey = pubKey.resource;
- ctrl.rawKey = [pubKey.format, pubKey.pubkey, pubKey.comment].join('\n');
-
- /**
- * This function will delete a public key resource.
- */
- function deletePubKey() {
- ctrl.pubKey.$remove(
- {id: ctrl.pubKey.id},
- function() {
- raiseAlert('success',
- '', 'Public key deleted successfully');
- $uibModalInstance.close(ctrl.pubKey.id);
- },
- function(httpResp) {
- raiseAlert('danger',
- httpResp.statusText, httpResp.data.title);
- ctrl.cancel();
- }
- );
- }
-
- /**
- * This method will dismiss the modal.
- */
- function cancel() {
- $uibModalInstance.dismiss('cancel');
- }
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/showPubKeyModal.html b/cvp/3rd_party/static/testapi-ui/components/profile/showPubKeyModal.html
deleted file mode 100644
index 5f63a5ef..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/profile/showPubKeyModal.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<div class="modal-header">
- <h4>Public Key</h4>
-</div>
-<div class="modal-body container-fluid">
- <textarea type="text" rows="10" cols="67" readonly="readonly">{{modal.rawKey}}</textarea>
- <div class="modal-footer">
- <button class="btn btn-warning" ng-click="modal.cancel()">Cancel</button>
- <button type="button" class="btn btn-danger btn-sm" ng-click="modal.deletePubKey() "
- confirm="Are you sure you want to delete this public key? You will lose management access to any test results signed with this key.">Delete</button>
- </div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/results-report/data/testcases.json b/cvp/3rd_party/static/testapi-ui/components/results-report/data/testcases.json
deleted file mode 100644
index 858aea63..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results-report/data/testcases.json
+++ /dev/null
@@ -1,509 +0,0 @@
-{
- "mandatory": {
- "dovetail.ha.tc001": {
- "cases": [
- "opnfv_yardstick_tc019"
- ],
- "total": 1
- },
- "dovetail.ha.tc002": {
- "cases": [
- "opnfv_yardstick_tc045"
- ],
- "total": 1
- },
- "dovetail.ha.tc003": {
- "cases": [
- "opnfv_yardstick_tc046"
- ],
- "total": 1
- },
- "dovetail.ha.tc004": {
- "cases": [
- "opnfv_yardstick_tc047"
- ],
- "total": 1
- },
- "dovetail.ha.tc005": {
- "cases": [
- "opnfv_yardstick_tc048"
- ],
- "total": 1
- },
- "dovetail.ha.tc006": {
- "cases": [
- "opnfv_yardstick_tc051"
- ],
- "total": 1
- },
- "dovetail.ha.tc007": {
- "cases": [
- "opnfv_yardstick_tc052"
- ],
- "total": 1
- },
- "dovetail.ha.tc008": {
- "cases": [
- "opnfv_yardstick_tc053"
- ],
- "total": 1
- },
- "dovetail.osinterop.tc001": {
- "cases": [
- "tempest.api.compute.images.test_images_oneserver.ImagesOneServerTestJSON.test_create_delete_image",
- "tempest.api.compute.images.test_images_oneserver.ImagesOneServerTestJSON.test_create_image_specify_multibyte_character_image_name",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_list_servers",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_list_servers_with_detail",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_server_details",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_list_servers",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_list_servers_with_detail",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_server_details",
- "tempest.api.compute.servers.test_instance_actions.InstanceActionsTestJSON.test_get_instance_action",
- "tempest.api.compute.servers.test_instance_actions.InstanceActionsTestJSON.test_list_instance_actions",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_flavor",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_image",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_server_name",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_filter_by_server_status",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_detailed_limit_results",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_active_status",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_flavor",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_image",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_limit",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filter_by_server_name",
- "tempest.api.compute.servers.test_list_server_filters.ListServerFiltersTestJSON.test_list_servers_filtered_by_name_wildcard",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_changes_since_future_date",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_changes_since_invalid_date",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_greater_than_actual_count",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_pass_negative_value",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_limits_pass_string",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_flavor",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_image",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_by_non_existing_server_name",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_detail_server_is_deleted",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_status_non_existing",
- "tempest.api.compute.servers.test_list_servers_negative.ListServersNegativeTestJSON.test_list_servers_with_a_deleted_server",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_lock_unlock_server",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_stop_start_server",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_delete_server_metadata_item",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_get_server_metadata_item",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_list_server_metadata",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_set_server_metadata",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_set_server_metadata_item",
- "tempest.api.compute.servers.test_server_metadata.ServerMetadataTestJSON.test_update_server_metadata",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_server_with_admin_password",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_specify_keypair",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_create_with_existing_server_name",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_access_server_address",
- "tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_server_name",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_numeric_server_name",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_server_metadata_exceeds_length_limit",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_server_name_length_exceeds_256",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_flavor",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_image",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_create_with_invalid_network_uuid",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_delete_server_pass_id_exceeding_length_limit",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_delete_server_pass_negative_id",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_get_non_existent_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_invalid_ip_v6_address",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_reboot_non_existent_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_rebuild_deleted_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_rebuild_non_existent_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_server_name_blank",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_stop_non_existent_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_name_of_non_existent_server",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_server_name_length_exceeds_256",
- "tempest.api.compute.servers.test_servers_negative.ServersNegativeTestJSON.test_update_server_set_empty_name",
- "tempest.api.compute.test_quotas.QuotasTestJSON.test_get_default_quotas",
- "tempest.api.compute.test_quotas.QuotasTestJSON.test_get_quotas",
- "tempest.api.compute.test_versions.TestVersions.test_list_api_versions",
- "tempest.api.compute.volumes.test_attach_volume.AttachVolumeTestJSON.test_list_get_volume_attachments",
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_media_types",
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_resources",
- "tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_statuses",
- "tempest.api.identity.v3.test_tokens.TokensV3Test.test_create_token",
- "tempest.api.image.v2.test_images.BasicOperationsImagesTest.test_delete_image",
- "tempest.api.image.v2.test_images.BasicOperationsImagesTest.test_update_image",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_get_image_schema",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_get_images_schema",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_images_param_container_format",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_images_param_disk_format",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_images_param_limit",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_images_param_min_max_size",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_images_param_size",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_images_param_status",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_images_param_visibility",
- "tempest.api.image.v2.test_images.ListUserImagesTest.test_list_no_params",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_delete_image_null_id",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_delete_non_existing_image",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_delete_deleted_image",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_image_null_id",
- "tempest.api.image.v2.test_images_negative.ImagesNegativeTest.test_get_non_existent_image",
- "tempest.api.image.v2.test_images_tags.ImagesTagsTest.test_update_delete_tags_for_image",
- "tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest.test_delete_non_existing_tag",
- "tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest.test_update_tags_for_non_existing_image",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_all_attributes",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_allocation_pools",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_dhcp_enabled",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_gw",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_gw_and_allocation_pools",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_with_host_routes_and_dns_nameservers",
- "tempest.api.network.test_networks.NetworksTest.test_create_delete_subnet_without_gateway",
- "tempest.api.network.test_networks.NetworksTest.test_create_update_delete_network_subnet",
- "tempest.api.network.test_networks.NetworksTest.test_delete_network_with_subnet",
- "tempest.api.network.test_networks.NetworksTest.test_list_networks",
- "tempest.api.network.test_networks.NetworksTest.test_list_networks_fields",
- "tempest.api.network.test_networks.NetworksTest.test_list_subnets",
- "tempest.api.network.test_networks.NetworksTest.test_list_subnets_fields",
- "tempest.api.network.test_networks.NetworksTest.test_show_network",
- "tempest.api.network.test_networks.NetworksTest.test_show_network_fields",
- "tempest.api.network.test_networks.NetworksTest.test_show_subnet",
- "tempest.api.network.test_networks.NetworksTest.test_show_subnet_fields",
- "tempest.api.network.test_networks.NetworksTest.test_update_subnet_gw_dns_host_routes_dhcp",
- "tempest.api.network.test_ports.PortsTestJSON.test_create_bulk_port",
- "tempest.api.network.test_ports.PortsTestJSON.test_create_port_in_allowed_allocation_pools",
- "tempest.api.network.test_ports.PortsTestJSON.test_create_update_delete_port",
- "tempest.api.network.test_ports.PortsTestJSON.test_list_ports",
- "tempest.api.network.test_ports.PortsTestJSON.test_list_ports_fields",
- "tempest.api.network.test_ports.PortsTestJSON.test_show_port",
- "tempest.api.network.test_ports.PortsTestJSON.test_show_port_fields",
- "tempest.api.network.test_ports.PortsTestJSON.test_update_port_with_security_group_and_extra_attributes",
- "tempest.api.network.test_ports.PortsTestJSON.test_update_port_with_two_security_groups_and_extra_attributes",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_list_update_show_delete_security_group",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_additional_args",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_icmp_type_code",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_protocol_integer_value",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_remote_group_id",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_security_group_rule_with_remote_ip_prefix",
- "tempest.api.network.test_security_groups.SecGroupTest.test_create_show_delete_security_group_rule",
- "tempest.api.network.test_security_groups.SecGroupTest.test_list_security_groups",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_additional_default_security_group_fails",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_duplicate_security_group_rule_fails",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_ethertype",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_protocol",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_bad_remote_ip_prefix",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_invalid_ports",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_non_existent_remote_groupid",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_create_security_group_rule_with_non_existent_security_group",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_delete_non_existent_security_group",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_show_non_existent_security_group",
- "tempest.api.network.test_security_groups_negative.NegativeSecGroupTest.test_show_non_existent_security_group_rule",
- "tempest.api.volume.test_availability_zone.AvailabilityZoneV2TestJSON.test_get_availability_zone_list",
- "tempest.api.volume.test_extensions.ExtensionsV2TestJSON.test_list_extensions",
- "tempest.api.volume.test_snapshot_metadata.SnapshotV2MetadataTestJSON.test_crud_snapshot_metadata",
- "tempest.api.volume.test_snapshot_metadata.SnapshotV2MetadataTestJSON.test_update_snapshot_metadata_item",
- "tempest.api.volume.test_volume_metadata.VolumesV2MetadataTest.test_crud_volume_metadata",
- "tempest.api.volume.test_volume_metadata.VolumesV2MetadataTest.test_update_volume_metadata_item",
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_attach_detach_volume_to_instance",
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_get_volume_attachment",
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_reserve_unreserve_volume",
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_volume_bootable",
- "tempest.api.volume.test_volumes_actions.VolumesV2ActionsTest.test_volume_readonly_update",
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete",
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete_as_clone",
- "tempest.api.volume.test_volumes_get.VolumesV2GetTest.test_volume_create_get_update_delete_from_image",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_by_name",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_by_name",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_param_display_name_and_status",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_detail_param_display_name_and_status",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_detail_param_metadata",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_details",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_with_param_metadata",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_by_availability_zone",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_by_status",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_details_by_availability_zone",
- "tempest.api.volume.test_volumes_list.VolumesV2ListTestJSON.test_volumes_list_details_by_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_attach_volumes_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_invalid_size",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_snapshot_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_source_volid",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_nonexistent_volume_type",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_size_negative",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_with_size_zero",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_create_volume_without_passing_size",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_delete_invalid_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_delete_volume_without_passing_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_detach_volumes_with_invalid_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_get_invalid_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_get_volume_without_passing_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_detail_with_invalid_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_detail_with_nonexistent_name",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_with_invalid_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_list_volumes_with_nonexistent_name",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_reserve_volume_with_negative_volume_status",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_reserve_volume_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_unreserve_volume_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_empty_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_invalid_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_update_volume_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_volume_delete_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_negative.VolumesV2NegativeTest.test_volume_get_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_snapshot_create_get_list_update_delete",
- "tempest.api.volume.test_volumes_snapshots.VolumesV2SnapshotTestJSON.test_volume_from_snapshot",
- "tempest.api.volume.test_volumes_snapshots_list.VolumesV2SnapshotListTestJSON.test_snapshots_list_details_with_params",
- "tempest.api.volume.test_volumes_snapshots_list.VolumesV2SnapshotListTestJSON.test_snapshots_list_with_params",
- "tempest.api.volume.test_volumes_snapshots_negative.VolumesV2SnapshotNegativeTestJSON.test_create_snapshot_with_nonexistent_volume_id",
- "tempest.api.volume.test_volumes_snapshots_negative.VolumesV2SnapshotNegativeTestJSON.test_create_snapshot_without_passing_volume_id",
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_pagination",
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_details_with_multiple_params",
- "tempest.api.volume.v2.test_volumes_list.VolumesV2ListTestJSON.test_volume_list_pagination",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_host_name_is_same_as_server_name",
- "tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_created_server_vcpus",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_host_name_is_same_as_server_name",
- "tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_created_server_vcpus",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_reboot_server_hard",
- "tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_rebuild_server",
- "tempest.api.compute.volumes.test_attach_volume.AttachVolumeTestJSON.test_attach_detach_volume"
- ],
- "total": 205
- },
- "dovetail.vping.tc001": {
- "cases": [
- "vping_userdata"
- ],
- "total": 1
- },
- "dovetail.vping.tc002": {
- "cases": [
- "vping_ssh"
- ],
- "total": 1
- }
- },
- "optional": {
- "dovetail.ipv6.tc001": {
- "cases": [
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_network",
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_port",
- "tempest.api.network.test_networks.BulkNetworkOpsIpV6Test.test_bulk_create_delete_subnet"
- ],
- "total": 3
- },
- "dovetail.ipv6.tc002": {
- "cases": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_create_update_delete_network_subnet"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc003": {
- "cases": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_external_network_visibility"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc004": {
- "cases": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_list_networks",
- "tempest.api.network.test_networks.NetworksIpV6Test.test_list_subnets"
- ],
- "total": 2
- },
- "dovetail.ipv6.tc005": {
- "cases": [
- "tempest.api.network.test_networks.NetworksIpV6Test.test_show_network",
- "tempest.api.network.test_networks.NetworksIpV6Test.test_show_subnet"
- ],
- "total": 2
- },
- "dovetail.ipv6.tc006": {
- "cases": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_port_in_allowed_allocation_pools"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc007": {
- "cases": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_port_with_no_securitygroups"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc008": {
- "cases": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_create_update_delete_port"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc009": {
- "cases": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_list_ports"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc010": {
- "cases": [
- "tempest.api.network.test_ports.PortsIpV6TestJSON.test_show_port"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc011": {
- "cases": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_multiple_router_interfaces"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc012": {
- "cases": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_remove_router_interface_with_port_id"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc013": {
- "cases": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_add_remove_router_interface_with_subnet_id"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc014": {
- "cases": [
- "tempest.api.network.test_routers.RoutersIpV6Test.test_create_show_list_update_delete_router"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc015": {
- "cases": [
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_create_list_update_show_delete_security_group"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc016": {
- "cases": [
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_create_show_delete_security_group_rule"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc017": {
- "cases": [
- "tempest.api.network.test_security_groups.SecGroupIPv6Test.test_list_security_groups"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc018": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dhcp6_stateless_from_os"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc019": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_dhcp6_stateless_from_os"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc020": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_multi_prefix_dhcpv6_stateless"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc021": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_multi_prefix_dhcpv6_stateless"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc022": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_slaac_from_os"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc023": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_slaac_from_os"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc024": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_multi_prefix_slaac"
- ],
- "total": 1
- },
- "dovetail.ipv6.tc025": {
- "cases": [
- "tempest.scenario.test_network_v6.TestGettingAddress.test_dualnet_multi_prefix_slaac"
- ],
- "total": 1
- },
- "dovetail.sdnvpn.tc001": {
- "cases": [
- "functest_testcase_1"
- ],
- "total": 1
- },
- "dovetail.sdnvpn.tc002": {
- "cases": [
- "functest_testcase_2"
- ],
- "total": 1
- },
- "dovetail.sdnvpn.tc004": {
- "cases": [
- "functest_testcase_4"
- ],
- "total": 1
- },
- "dovetail.sdnvpn.tc008": {
- "cases": [
- "functest_testcase_8"
- ],
- "total": 1
- },
- "dovetail.tempest.tc001": {
- "cases": [
- "tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_mtu_sized_frames"
- ],
- "total": 1
- },
- "dovetail.tempest.tc002": {
- "cases": [
- "tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_port_security_macspoofing_port",
- "tempest.scenario.test_security_groups_basic_ops.TestSecurityGroupsBasicOps.test_cross_tenant_traffic",
- "tempest.scenario.test_security_groups_basic_ops.TestSecurityGroupsBasicOps.test_in_tenant_traffic",
- "tempest.scenario.test_security_groups_basic_ops.TestSecurityGroupsBasicOps.test_multiple_security_groups",
- "tempest.scenario.test_security_groups_basic_ops.TestSecurityGroupsBasicOps.test_port_security_disable_security_group",
- "tempest.scenario.test_security_groups_basic_ops.TestSecurityGroupsBasicOps.test_port_update_new_security_group"
- ],
- "total": 6
- },
- "dovetail.tempest.tc003": {
- "cases": [
- "tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_hotplug_nic",
- "tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_network_basic_ops",
- "tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_subnet_details",
- "tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_update_instance_port_admin_state",
- "tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_update_router_admin_state"
- ],
- "total": 5
- },
- "dovetail.tempest.tc004": {
- "cases": [
- "tempest.scenario.test_minimum_basic.TestMinimumBasicScenario.test_minimum_basic_scenario",
- "tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_cold_migration",
- "tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_pause_unpause",
- "tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_reboot",
- "tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_rebuild",
- "tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_resize",
- "tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_stop_start",
- "tempest.scenario.test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_suspend_resume",
- "tempest.scenario.test_server_advanced_ops.TestServerAdvancedOps.test_resize_volume_backed_server_confirm",
- "tempest.scenario.test_server_advanced_ops.TestServerAdvancedOps.test_server_sequence_suspend_resume",
- "tempest.scenario.test_shelve_instance.TestShelveInstance.test_shelve_instance",
- "tempest.scenario.test_shelve_instance.TestShelveInstance.test_shelve_volume_backed_instance"
- ],
- "total": 12
- },
- "dovetail.tempest.tc005": {
- "cases": [
- "tempest.scenario.test_server_multinode.TestServerMultinode.test_schedule_to_all_nodes",
- "tempest.api.compute.servers.test_server_group.ServerGroupTestJSON.test_create_delete_multiple_server_groups_with_same_name_policy",
- "tempest.api.compute.servers.test_server_group.ServerGroupTestJSON.test_create_delete_server_group_with_affinity_policy",
- "tempest.api.compute.servers.test_server_group.ServerGroupTestJSON.test_create_delete_server_group_with_anti_affinity_policy",
- "tempest.api.compute.servers.test_server_group.ServerGroupTestJSON.test_list_server_groups",
- "tempest.api.compute.servers.test_server_group.ServerGroupTestJSON.test_show_server_group"
- ],
- "total": 6
- }
- }
-}
diff --git a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/editTestModal.html b/cvp/3rd_party/static/testapi-ui/components/results-report/partials/editTestModal.html
deleted file mode 100644
index 583c9b92..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/editTestModal.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<div class="modal-content">
- <div class="modal-header">
- <button type="button" class="close" aria-hidden="true" ng-click="modal.close()">&times;</button>
- <h4>Edit Test Run Metadata</h4>
- <p>Make changes to your test metadata.</p>
- </div>
- <div class="modal-body">
- <div class="form-group">
- <strong>Publicly Shared:</strong>
- <select ng-model="modal.metaCopy.shared"
- class="form-control">
- <option value="true">Yes</option>
- <option value="">No</option>
- </select>
- <br />
- <strong>Associated Guideline:</strong>
- <select ng-model="modal.metaCopy.guideline"
- ng-options="o as o.slice(0, -5) for o in modal.versionList"
- class="form-control">
- <option value="">None</option>
- </select>
- <br />
- <strong>Associated Target Program:</strong>
- <select ng-model="modal.metaCopy.target"
- class="form-control">
- <option value="">None</option>
- <option value="platform">OpenStack Powered Platform</option>
- <option value="compute">OpenStack Powered Compute</option>
- <option value="object">OpenStack Powered Object Storage</option>
- </select>
- <hr>
- <strong>Associated Product:</strong>
- <select ng-options="product as product.name for product in modal.products | arrayConverter | orderBy: 'name' track by product.id"
- ng-model="modal.selectedProduct"
- ng-change="modal.getProductVersions()"
- class="form-control">
- <option value="">-- No Product --</option>
- </select>
-
- <span ng-if="modal.productVersions.length">
- <strong>Product Version:</strong>
- <select ng-options="version as version.version for version in modal.productVersions | orderBy: 'version' track by version.id"
- ng-model="modal.selectedVersion"
- class="form-control">
- </select>
-
- </span>
-
- </div>
- <div ng-show="modal.showError" class="alert alert-danger" role="alert">
- <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
- <span class="sr-only">Error:</span>
- {{modal.error}}
- </div>
- <div ng-show="modal.showSuccess" class="alert alert-success" role="success">
- <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
- <span class="sr-only">Success:</span>
- Changes saved successfully.
- </div>
- </div>
- <div class="modal-footer">
- <button class="btn btn-primary" type="button" ng-click="modal.saveChanges()">Save Changes</button>
- <button class="btn btn-primary" type="button" ng-click="modal.close()">Close</button>
- </div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/fullTestListModal.html b/cvp/3rd_party/static/testapi-ui/components/results-report/partials/fullTestListModal.html
deleted file mode 100644
index 6db198b0..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/fullTestListModal.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<div class="modal-content">
- <div class="modal-header">
- <h4>All Passed Tests ({{modal.tests.length}})</h4>
- </div>
- <div class="modal-body tests-modal-content">
- <div class="form-group">
- <textarea class="form-control" rows="20" id="tests" wrap="off">{{modal.getTestListString()}}</textarea>
- </div>
- </div>
- <div class="modal-footer">
- <button class="btn btn-primary" type="button" ng-click="modal.close()">Close</button>
- </div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html b/cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html
deleted file mode 100644
index e3632890..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!--
-HTML for each accordion group that separates the status types on the results
-report page.
--->
-
-Test Filters:<br />
-<div class="btn-toolbar" role="toolbar">
- <div class="btn-group button-margin" data-toggle="buttons">
- <label class="btn btn-default" ng-click="ctrl.changeStatus('total')" ng-class="{'active': ctrl.testStatus === 'total'}">
- <input type="radio" ng-model="ctrl.testStatus" value="total">
- <span class="text-primary">All</span>
- </label>
- <label class="btn btn-default" ng-click="ctrl.changeStatus('passed')" ng-class="{'active': ctrl.testStatus === 'passed'}">
- <input type="radio" ng-model="ctrl.testStatus" value="passed">
- <span class="text-success">Passed</span>
- </label>
- <label class="btn btn-default" ng-click="ctrl.changeStatus('not passed')" ng-class="{'active': ctrl.testStatus === 'not passed'}">
- <input type="radio" ng-model="ctrl.testStatus" value="not passed">
- <span class="text-danger">Not Passed</span>
- </label>
- </div>
- <div class="btn-group button-margin" style="float:right">
- <button type="button" class="btn btn-default" ng-click="ctrl.openAll()">Expand</button>
- <button type="button" class="btn btn-default" ng-click="ctrl.folderAll()">Collapse</button>
- </div>
-</div>
-
-<uib-accordion-group ng-repeat="(type,data) in ctrl.data" is-open="isOpen">
-<uib-accordion-heading>
- {{ type }}: (Total: 3 test areas, {{ ctrl.statistics[type].total }} tests)
- <i class="pull-right glyphicon" ng-class="{'glyphicon-chevron-down': isOpen, 'glyphicon-chevron-right': !isOpen}"></i>
- </uib-accordion-heading>
- <ol class="capabilities">
- <li ng-repeat="(area, value) in data" ng-show="(ctrl.testStatus == 'passed' && value.pass != 0) || (ctrl.testStatus == 'not passed' && value.fail != 0) || ctrl.testStatus == 'total'">
-
- <a ng-click="value.folder = !value.folder">
- {{ area }}
- <span ng-if="ctrl.testStatus == 'total'" ng-class="{'text-success': value.total == value.pass, 'text-warning': (value.pass < value.total && value.pass > 0), 'text-danger': value.pass == 0}">[{{ value.pass }}/{{ value.total }}]</span>
- <span ng-if="ctrl.testStatus == 'passed'" class="text-success">[{{ value.pass }}]</span>
- <span ng-if="ctrl.testStatus == 'not passed'" class="text-danger">[{{ value.fail }}]</span>
- </a>
- <a uib-tooltip="view log" ng-click="ctrl.gotoResultLog(area)"><span class="glyphicon glyphicon-cog"></span></a>
- <ul class="list-unstyled" uib-collapse="value.folder">
- <li ng-repeat="case in value.cases" ng-if="(ctrl.testStatus=='passed' && ctrl.case_list.indexOf(case) > -1) || (ctrl.testStatus=='not passed' && ctrl.case_list.indexOf(case) == -1) || ctrl.testStatus=='total'">
- <span ng-class="{'glyphicon glyphicon-ok text-success':ctrl.case_list.indexOf(case) > -1, 'glyphicon glyphicon-remove text-warning':ctrl.case_list.indexOf(case) == -1}" aria-hidden="true"></span>
- <a ng-click="ctrl.gotoDoc(case)">{{ case }}</a>
- </li>
-
- </ul>
- </li>
- </ol>
-</uib-accordion-group>
diff --git a/cvp/3rd_party/static/testapi-ui/components/results-report/resultsReport.html b/cvp/3rd_party/static/testapi-ui/components/results-report/resultsReport.html
deleted file mode 100644
index bc049f31..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results-report/resultsReport.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<div class="container-fluid common-main-container">
-<h3>Test Run Results</h3>
-
-<div ng-show="ctrl.testId" class="container-fluid">
- <div class="row">
- <div class="pull-left">
- <div class="test-report">
- <strong>Test ID:</strong> {{ctrl.testId}}<br />
- </div>
- </div>
- </div>
-</div>
-
-<strong>Total: {{ctrl.statistics.total}}, Pass: {{ ctrl.statistics.pass}}, Rate: {{ ctrl.statistics.pass / ctrl.statistics.total * 100 | number:2 }}%</strong></br>
-<strong>Mandatory Total: {{ctrl.statistics.mandatory.total}}, Pass: {{ ctrl.statistics.mandatory.pass }}, Rate: {{ ctrl.statistics.mandatory.pass / ctrl.statistics.mandatory.total * 100 | number:2 }}%</strong></br>
-<strong>Optional Total: {{ctrl.statistics.optional.total}}, Pass: {{ ctrl.statistics.optional.pass }}, Rate: {{ ctrl.statistics.optional.pass / ctrl.statistics.optional.total * 100 | number:2 }}%</strong></br>
-<hr>
-<strong>{{ ctrl.validation }}</strong></br>
-
-<div>
- <hr>
- <h4>Test Result Overview</h4>
-
- <uib-accordion close-others=false>
- <!-- The ng-repeat is used to pass in a local variable to the template. -->
- <ng-include
- src="ctrl.detailsTemplate"
- onload="isOpen = true">
- </ng-include>
- <br />
- </uib-accordion>
-</div>
-</div>
-
-<!--
-<div class="loading">
- <div cg-busy="{promise:resultsRequest,message:'Loading results'}"></div>
-</div>
-
-<div ng-show="ctrl.showError" class="alert alert-danger" role="alert">
- <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
- <span class="sr-only">Error:</span>
- {{ctrl.error}}
-</div>
--->
diff --git a/cvp/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js b/cvp/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js
deleted file mode 100644
index 65ce151d..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js
+++ /dev/null
@@ -1,247 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('ResultsReportController', ResultsReportController);
-
- ResultsReportController.$inject = [
- '$scope', '$http', '$stateParams', '$window',
- '$uibModal', 'testapiApiUrl', 'raiseAlert'
- ];
-
- /**
- * TestAPI Results Report Controller
- * This controller is for the '/results/<test run ID>' page where a user can
- * view details for a specific test run.
- */
- function ResultsReportController($scope, $http, $stateParams, $window,
- $uibModal, testapiApiUrl, raiseAlert) {
-
- var ctrl = this;
-
- ctrl.testStatus = 'total';
- ctrl.case_list = [];
- ctrl.data = {};
- ctrl.statistics = {
- 'total': 0, 'pass': 0, 'fail': 0,
- 'mandatory': {'total': 0, 'pass': 0, 'fail': 0, 'area': 0},
- 'optional': {'total': 0, 'pass': 0, 'fail': 0, 'area': 0}
- };
-
- ctrl.gotoDoc = gotoDoc;
- ctrl.openAll = openAll;
- ctrl.folderAll = folderAll;
- ctrl.gotoResultLog = gotoResultLog;
- ctrl.changeStatus = changeStatus;
-
- /** The testID extracted from the URL route. */
- ctrl.testId = $stateParams.testID;
- ctrl.innerId = $stateParams.innerID;
- ctrl.validation = '';
-
- /** The HTML template that all accordian groups will use. */
- ctrl.detailsTemplate = 'testapi-ui/components/results-report/partials/' +
- 'reportDetails.html';
-
- $scope.load_finish = false;
-
- function changeStatus(value){
- ctrl.testStatus = value;
- }
-
- function extend(case_list) {
- angular.forEach(case_list, function(ele){
- ctrl.case_list.push(ele);
- });
- }
-
- function strip(word) {
- return word.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
- }
-
- function gotoResultLog(case_name) {
- var case_area = case_name.split(".")[1];
- var log_url = "/logs/"+ctrl.testId+"/results/";
- if (case_area == "vping") {
- log_url += "functest.log";
- } else if (case_area == "ha") {
- log_url += "yardstick.log";
- } else {
- log_url += case_area+"_logs/"+case_name+".log";
- }
- var is_reachable = false;
-
- $.ajax({
- url: log_url,
- async: false,
- success: function (response) {
- is_reachable = true;
- },
- error: function (response){
- alert("Log file could not be found. Please confirm this case has been executed successfully.");
- }
- });
-
- if(is_reachable == true){
- window.open(log_url);
- }
- }
-
- $scope.$watch('load_finish', function(){
- if($scope.load_finish == true){
- var case_url = 'testapi-ui/components/results-report/data/testcases.json'
- $http.get(case_url).then(function(response){
- ctrl.data = response.data;
-
- angular.forEach(ctrl.data.mandatory, function(value, name){
- ctrl.data.mandatory[name].folder = true;
- ctrl.data.mandatory[name].pass = 0;
- ctrl.data.mandatory[name].fail = 0;
- angular.forEach(value.cases, function(sub_case){
- ctrl.statistics.total += 1;
- ctrl.statistics.mandatory.total += 1;
- if(ctrl.case_list.indexOf(sub_case) > -1){
- ctrl.data.mandatory[name].pass += 1;
- ctrl.statistics.mandatory.pass += 1;
- ctrl.statistics.pass += 1;
- }else{
- ctrl.data.mandatory[name].fail += 1;
- ctrl.statistics.mandatory.fail += 1;
- ctrl.statistics.fail += 1;
- }
-
- });
- });
-
- angular.forEach(ctrl.data.optional, function(value, name){
- ctrl.data.optional[name].folder = true;
- ctrl.data.optional[name].pass = 0;
- ctrl.data.optional[name].fail = 0;
- angular.forEach(value.cases, function(sub_case){
- ctrl.statistics.total += 1;
- ctrl.statistics.optional.total += 1;
- if(ctrl.case_list.indexOf(sub_case) > -1){
- ctrl.data.optional[name].pass += 1;
- ctrl.statistics.optional.pass += 1;
- ctrl.statistics.pass += 1;
- }else{
- ctrl.data.optional[name].fail += 1;
- ctrl.statistics.optional.fail += 1;
- ctrl.statistics.fail += 1;
- }
-
- });
- });
-
- ctrl.statistics.mandatory.area = Object.keys(ctrl.data.mandatory).length;
- ctrl.statistics.optional.area = Object.keys(ctrl.data.optional).length;
- }, function(error){
- alert('error to get test case info');
- });
- }
- });
-
- function generate_format_data() {
- var test_url = testapiApiUrl + '/tests/' + ctrl.innerId;
- $http.get(test_url).then(function(test_resp){
- ctrl.validation = test_resp.data.validation;
- angular.forEach(test_resp.data.results, function(result, index){
- var result_url = testapiApiUrl + '/results/' + result;
- $http.get(result_url).then(function(result_resp){
- var sub_case_list = get_sub_case_list(result_resp.data);
- extend(sub_case_list);
- if(index == test_resp.data.results.length - 1){
- $scope.load_finish = true;
- }
- }, function(result_error){
- });
- });
-
- }, function(test_error){
- alert('Error when get test record');
- });
- }
-
- function get_sub_case_list(result) {
- if(result.project_name == 'yardstick'){
- return yardstickPass(result);
- }else{
- return functestPass(result);
- }
- }
-
- function yardstickPass(result) {
- var case_list = [];
- angular.forEach(result.details.results, function(ele){
- if(ele.benchmark){
- if(ele.benchmark.data.sla_pass == 1){
- case_list.push(result.case_name);
- return case_list;
- }
- }
- });
- return case_list;
- }
-
- function functestPass(result){
- var case_list = [];
- if(result.case_name == 'refstack_defcore'){
- angular.forEach(result.details.success, function(ele){
- if(strip(ele) == 'tempest.api.identity.v3.test_t'){
- case_list.push('tempest.api.identity.v3.test_tokens.TokensV3Test.test_create_token');
- }else{
- case_list.push(ele.split(' ')[ele.split(' ').length - 2]);
- }
- });
- }else if(result.case_name == 'tempest_custom'){
- angular.forEach(result.details.success, function(ele){
- case_list.push(ele.split(' ')[ele.split(' ').length - 1]);
- });
- }else{
- if(result.criteria == 'PASS'){
- case_list.push(result.case_name);
- }
- }
- return case_list;
- }
-
- function gotoDoc(sub_case){
- }
-
- function openAll(){
- angular.forEach(ctrl.data.mandatory, function(ele, id){
- ele.folder = false;
- });
- angular.forEach(ctrl.data.optional, function(ele, id){
- ele.folder = false;
- });
- }
-
- function folderAll(){
- angular.forEach(ctrl.data.mandatory, function(ele, id){
- ele.folder = true;
- });
- angular.forEach(ctrl.data.optional, function(ele, id){
- ele.folder = true;
- });
- }
-
- generate_format_data();
- }
-
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/results/modal/sharedModal.html b/cvp/3rd_party/static/testapi-ui/components/results/modal/sharedModal.html
deleted file mode 100644
index 2f50b0ce..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results/modal/sharedModal.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<div>
-
- <h4>Enter user name or email</h4>
- <input type="text" ng-model="ctrl.userName" />
-
- <div style="text-align:center;margin-top:20px;">
- <button class="btn btn-default" ng-disabled="ctrl.userName==null || ctrl.userName==''" ng-click="ctrl.addSharedUser(ctrl.tempResult, ctrl.userName)">Commit</button>
- </div>
-
-</div>
-
-
-<style>
- input {
- border-radius: 10px;
- border: 1px solid #eeeeee;
- width: 100%;
- }
-</style>
diff --git a/cvp/3rd_party/static/testapi-ui/components/results/results.html b/cvp/3rd_party/static/testapi-ui/components/results/results.html
deleted file mode 100644
index 719e6891..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results/results.html
+++ /dev/null
@@ -1,106 +0,0 @@
-<div class="container-fluid common-main-container">
-<h3>{{ctrl.pageHeader}}</h3>
-<p>{{ctrl.pageParagraph}}</p>
-<form class="form-inline" ng-show="ctrl.isUserResults">
-<h4>Upload Results<i class="glyphicon glyphicon-question-sign opnfv-blue" uib-tooltip="results file is logs.xxx.tar.gz under your dovetail installation path"></i></h4>
-<div class="form-group col-m-3">
- <input class="form-contrl btn btn-success cvp-btn medium accent-color regular-button" type = "file" file-model = "resultFile"/>
-</div>
-<div class="form-group col-m-3">
- <a class="btn btn-success cvp-btn medium accent-color regular-button" ng-click="ctrl.uploadFile()"><span>upload result</span></a>
-</div>
-<div>
-<lable>{{ctrl.uploadState}}</label>
-</div>
-</form>
-<div class="row" style="margin-bottom:24px;"></div>
-<div cg-busy="{promise:ctrl.authRequest,message:'Loading'}"></div>
-<div cg-busy="{promise:ctrl.resultsRequest,message:'Loading'}"></div>
-
-<div ng-show="ctrl.data" class="results-table" style="width:100%;overflow-x:scroll">
- <table ng-data="ctrl.data.result" ng-show="ctrl.data" class="table table-striped table-hover">
- <thead>
- <tr>
- <th>Upload Date</th>
- <th>Test ID</th>
- <th>Owner</th>
- <th>File Name</th>
- <th>Label</th>
- <th>Status</th>
- <th>Log</th>
- <th>SUT</th>
- <th>SUT Version</th>
- <th class="col-md-2">Operation</th>
- <th class="col-md-2">Share List</th>
- </tr>
- </thead>
-
- <tbody style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
- <tr ng-repeat="(index, result) in ctrl.data.tests">
- <td>{{ result.upload_date | limitTo:19}}</td>
- <td><a uib-tooltip="{{ result.id }}" tooltip-placement="top" tooltip-append-to-body="true" ng-click="ctrl.gotoResultDetail(result.id, result._id)">{{ result.id | limitTo:8 }}</a></td>
- <td>{{ result.owner }}</td>
- <td>{{ result.filename || "None"}}</td>
- <td><div class="popover-wrapper"><a editable-theme="bs3" onbeforesave="ctrl.changeLabel(result, 'label', $data)" editable-text="result.label"> {{ result.label || "None" }}</a></div></td>
- <td>{{ result.status }}</td>
- <td><a ng-click="ctrl.downloadLogs(result.id)">logs</a></td>
- <td><a ng-click="ctrl.gotoSUT(result.id)">info</a></td>
- <td><div class="popover-wrapper"><a editable-theme="bs3" onbeforesave="ctrl.changeLabel(result, 'sut_label', $data)" editable-text="result.sut_label"> {{ result.sut_label || "None" }}</a></div></td>
- <td>
- <div class="btn-group" uib-dropdown>
- <a id="single-button" type="button" class="btn btn-success cvp-btn medium accent-color regular-button" uib-dropdown-toggle>
- Operation<span class="caret"></span>
- </a>
- <ul class="dropdown-menu" uib-dropdown-menu role="menu" aria-labelledby="single-button">
- <li role="menuitem" ng-if="auth.currentUser.openid == result.owner" class="menu-item menu-item-type-post_type menu-item-object-page"><a ng-class="{'hide': result.status == 'private'}" ng-click="ctrl.toPrivate(result, 'private')">withdraw submit</a></li>
- <li role="menuitem" ng-if="auth.currentUser.openid == result.owner" class="menu-item menu-item-type-post_type menu-item-object-page"><a ng-class="{'hide': result.status != 'private'}" ng-click="ctrl.toReview(result, 'review')">submit to review</a></li>
- <li role="menuitem" ng-if="auth.currentUser.role.indexOf('administrator') != -1" class="menu-item menu-item-type-post_type menu-item-object-page"><a ng-class="{'hide': result.status == 'approved' || result.status == 'private'}" ng-click="ctrl.toggleCheck(result, 'status', 'approved')">approve</a></li>
- <li role="menuitem" ng-if="auth.currentUser.role.indexOf('administrator') != -1" class="menu-item menu-item-type-post_type menu-item-object-page"><a ng-class="{'hide': result.status == 'not approved' || result.status == 'private'}" ng-click="ctrl.toggleCheck(result, 'status', 'not approved')">not approve</a></li>
- <li role="menuitem" ng-if="auth.currentUser.openid == result.owner" class="menu-item menu-item-type-post_type menu-item-object-page"><a ng-click="ctrl.openSharedModal(result)">share with</a></li>
- <li role="menuitem" ng-if="auth.currentUser.openid == result.owner" class="menu-item menu-item-type-post_type menu-item-object-page"><a ng-click="ctrl.deleteTest(result._id)">delete</a></li>
- </ul>
- </div>
- </td>
- <td>
- <div class="btn-group" uib-dropdown>
- <a id="single-button" type="button" class="btn btn-success cvp-btn medium accent-color regular-button" style="width:130px" uib-dropdown-toggle>
- Share List<span class="caret"></span>
- </a>
- <ul class="dropdown-menu" uib-dropdown-menu role="menu" aria-labelledby="single-button" style="min-width:200%">
- <li class="menu-item menu-item-type-post_type menu-item-object-page" role="menuitem" ng-repeat="share in result.shared track by $index"><span>{{ share }}<i ng-if="auth.currentUser.openid == result.owner" class="pull-right glyphicon glyphicon-remove" ng-click="ctrl.removeSharedUser(result, share)"></i></span></li>
- </ul>
- </div>
- </td>
-
- </tr>
- </tbody>
- </table>
-
- <div class="pages">
- <uib-pagination
- total-items="ctrl.totalItems"
- ng-model="ctrl.currentPage"
- items-per-page="ctrl.itemsPerPage"
- max-size="ctrl.maxSize"
- class="pagination-sm"
- boundary-links="true"
- rotate="false"
- num-pages="ctrl.numPages"
- ng-change="ctrl.update()">
- </uib-pagination>
- </div>
-</div>
-
-</div>
-<div ng-show="ctrl.showError" class="alert alert-danger" role="alert">
- <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
- <span class="sr-only">Error:</span>
- {{ctrl.error}}
-</div>
-</div>
-
-<style>
-.button-disabled {
- pointer-events:none;
-}
-</style>
diff --git a/cvp/3rd_party/static/testapi-ui/components/results/resultsController.js b/cvp/3rd_party/static/testapi-ui/components/results/resultsController.js
deleted file mode 100644
index aa593dc0..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/results/resultsController.js
+++ /dev/null
@@ -1,515 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('ResultsController', ResultsController);
-
- angular
- .module('testapiApp')
- .directive('fileModel', ['$parse', function ($parse) {
- return {
- restrict: 'A',
- link: function(scope, element, attrs) {
- var model = $parse(attrs.fileModel);
- var modelSetter = model.assign;
-
- element.bind('change', function(){
- scope.$apply(function(){
- modelSetter(scope, element[0].files[0]);
- });
- });
- }
- };
- }]);
-
- ResultsController.$inject = [
- '$scope', '$http', '$filter', '$state', 'testapiApiUrl','raiseAlert', 'ngDialog', '$resource'
- ];
-
- /**
- * TestAPI Results Controller
- * This controller is for the '/results' page where a user can browse
- * a listing of community uploaded results.
- */
- function ResultsController($scope, $http, $filter, $state, testapiApiUrl, raiseAlert, ngDialog, $resource) {
- var ctrl = this;
-
- ctrl.uploadFile=uploadFile;
- ctrl.update = update;
- ctrl.open = open;
- ctrl.clearFilters = clearFilters;
- ctrl.associateMeta = associateMeta;
- ctrl.getVersionList = getVersionList;
- ctrl.getUserProducts = getUserProducts;
- ctrl.associateProductVersion = associateProductVersion;
- ctrl.getProductVersions = getProductVersions;
- ctrl.prepVersionEdit = prepVersionEdit;
- ctrl.gotoSUT = gotoSUT;
- ctrl.gotoResultDetail = gotoResultDetail;
- ctrl.toggleCheck = toggleCheck;
- ctrl.changeLabel = changeLabel;
- ctrl.toReview = toReview;
- ctrl.toPrivate = toPrivate;
- ctrl.removeSharedUser = removeSharedUser;
- ctrl.addSharedUser = addSharedUser;
- ctrl.openSharedModal = openSharedModal;
- ctrl.downloadLogs = downloadLogs;
- ctrl.deleteTest = deleteTest;
-
- /** Mappings of Interop WG components to marketing program names. */
- ctrl.targetMappings = {
- 'platform': 'Openstack Powered Platform',
- 'compute': 'OpenStack Powered Compute',
- 'object': 'OpenStack Powered Object Storage'
- };
-
- /** Initial page to be on. */
- ctrl.currentPage = 1;
-
- /**
- * How many results should display on each page. Since pagination
- * is server-side implemented, this value should match the
- * 'results_per_page' configuration of the TestAPI server which
- * defaults to 20.
- */
- ctrl.itemsPerPage = 20;
-
- /**
- * How many page buttons should be displayed at max before adding
- * the '...' button.
- */
- ctrl.maxSize = 5;
-
- /** The upload date lower limit to be used in filtering results. */
- ctrl.startDate = '';
-
- /** The upload date upper limit to be used in filtering results. */
- ctrl.endDate = '';
-
- /** The date format for the date picker. */
- ctrl.format = 'yyyy-MM-dd';
-
- ctrl.userName = null;
-
- /** Check to see if this page should display user-specific results. */
- // ctrl.isUserResults = $state.current.name === 'userResults';
- // need auth to browse
- ctrl.isUserResults = $state.current.name === 'userResults';
-
- ctrl.currentUser = $scope.auth.name;
- console.log($scope.auth);
-
- // Should only be on user-results-page if authenticated.
- if (ctrl.isUserResults && !$scope.auth.isAuthenticated) {
- $state.go('home');
- }
-
- ctrl.pageHeader = ctrl.isUserResults ?
- 'Private test results' : 'Community test results';
-
- ctrl.pageParagraph = ctrl.isUserResults ?
- 'Your most recently uploaded test results are listed here.' :
- 'The most recently uploaded community test results are listed ' +
- 'here.';
-
- ctrl.uploadState = '';
-
- if (ctrl.isUserResults) {
- ctrl.authRequest = $scope.auth.doSignCheck()
- .then(ctrl.update);
- // ctrl.getUserProducts();
- } else {
- ctrl.update();
- }
-
- function downloadLogs(id) {
- // var logsUrl = testapiApiUrl + "/logs/log_" + id+".tar.gz";
- var logsUrl = "/logs/" + id+"/results/";
- window.location.href = logsUrl;
- // $http.get(logsUrl);
- }
-
- function deleteTest(inner_id) {
- var resp = confirm('Are you sure to delete this test?');
- if (!resp)
- return;
-
- var delUrl = testapiApiUrl + "/tests/" + inner_id;
- $http.get(delUrl)
- .then( function(resp) {
- var results = resp.data.results;
- $http.delete(delUrl)
- .then( function(ret) {
- if(ret.data.code && ret.data.code != 0) {
- alert(ret.data.msg);
- return;
- }
- ctrl.update();
- angular.forEach(results, function(ele) {
- delUrl = testapiApiUrl + "/results/" + ele;
- $http.delete(delUrl);
- });
- });
- });
- }
-
- function toggleCheck(result, item, newValue) {
- var id = result._id;
- var updateUrl = testapiApiUrl + "/tests/"+ id;
-
- var data = {};
- data['item'] = item;
- data[item] = newValue;
-
- $http.put(updateUrl, JSON.stringify(data), {
- transformRequest: angular.identity,
- headers: {'Content-Type': 'application/json'}}).then(function(ret){
- if(ret.data.code && ret.data.code != 0) {
- alert(ret.data.msg);
- }
- else {
- result[item] = newValue;
- console.log('update success');
- }
- }, function(error){
- alert("Error when update data");
- });
- }
-
- function changeLabel(result, key, data){
- toggleCheck(result, key, data);
- }
-
- function toReview(result, value){
- var resp = confirm('Once you submit a test result for review, it will become readable to all OVP reviewers. Do you want to proceed?');
- if(resp){
- toggleCheck(result, 'status', value);
- }
- }
-
- function toPrivate(result, value){
- var resp = confirm('Do you want to proceed?');
- if(resp){
- toggleCheck(result, 'status', value);
- }
- }
-
- function openSharedModal(result){
- ctrl.tempResult = result;
- ngDialog.open({
- preCloseCallback: function(value) {
- },
- template: 'testapi-ui/components/results/modal/sharedModal.html',
- scope: $scope,
- className: 'ngdialog-theme-default',
- width: 950,
- showClose: true,
- closeByDocument: true
- });
- }
-
- function addSharedUser(result, userId){
- var tempList = copy(result.shared);
- tempList.push(userId);
- toggleCheck(result, 'shared', tempList);
- ngDialog.close();
- }
-
- function removeSharedUser(result, userId){
- var tempList = copy(result.shared);
- var idx = tempList.indexOf(userId);
- if(idx != -1){
- tempList.splice(idx, 1);
- toggleCheck(result, 'shared', tempList);
- }
- }
-
- function copy(arrList){
- var tempList = [];
- angular.forEach(arrList, function(ele){
- tempList.push(ele);
- });
- return tempList;
- }
-
- function uploadFileToUrl(file, uploadUrl){
- var fd = new FormData();
- fd.append('file', file);
-
- $http.post(uploadUrl, fd, {
- transformRequest: angular.identity,
- headers: {'Content-Type': undefined}
- }).then(function(data){
-
- if(data.data.code && data.data.code != 0){
- alert(data.data.msg);
- return;
- }
-
- ctrl.uploadState = "";
- data.data.filename = file.name;
- var createTestUrl = testapiApiUrl + "/tests"
-
- $http.post(createTestUrl, data.data).then(function(data){
- if (data.data.code && data.data.code != 0) {
- alert(data.data.msg);
- } else {
- ctrl.update();
- }
- }, function(error){
- });
-
- }, function(error){
- ctrl.uploadState = "Upload failed. Error code is " + error.status;
- });
- }
-
- function uploadFile(){
- var file = $scope.resultFile;
- console.log('file is ' );
- console.dir(file);
-
- var uploadUrl = testapiApiUrl + "/results/upload";
- uploadFileToUrl(file, uploadUrl);
- };
-
- /**
- * This will contact the TestAPI API to get a listing of test run
- * results.
- */
- function update() {
- ctrl.showError = false;
- // Construct the API URL based on user-specified filters.
- var content_url = testapiApiUrl + '/tests' +
- '?page=' + ctrl.currentPage;
- var start = $filter('date')(ctrl.startDate, 'yyyy-MM-dd');
- if (start) {
- content_url =
- content_url + '&from=' + start + ' 00:00:00';
- }
- var end = $filter('date')(ctrl.endDate, 'yyyy-MM-dd');
- if (end) {
- content_url = content_url + '&to=' + end + ' 23:59:59';
- }
- if (ctrl.isUserResults) {
- content_url = content_url + '&signed'+'&per_page='+ ctrl.itemsPerPage;
- }
- ctrl.resultsRequest =
- $http.get(content_url).success(function (data) {
- ctrl.data = data;
- ctrl.totalItems = ctrl.data.pagination.total_pages * ctrl.itemsPerPage;
- ctrl.currentPage = ctrl.data.pagination.current_page;
- ctrl.numPages = ctrl.data.pagination.total_pages;
- console.log(ctrl.data);
- }).error(function (error) {
- ctrl.data = null;
- ctrl.totalItems = 0;
- ctrl.showError = true;
- ctrl.error =
- 'Error retrieving results listing from server: ' +
- angular.toJson(error);
- });
- }
-
- /**
- * This is called when the date filter calendar is opened. It
- * does some event handling, and sets a scope variable so the UI
- * knows which calendar was opened.
- * @param {Object} $event - The Event object
- * @param {String} openVar - Tells which calendar was opened
- */
- function open($event, openVar) {
- $event.preventDefault();
- $event.stopPropagation();
- ctrl[openVar] = true;
- }
-
- /**
- * This function will clear all filters and update the results
- * listing.
- */
- function clearFilters() {
- ctrl.startDate = null;
- ctrl.endDate = null;
- ctrl.update();
- }
-
- /**
- * This will send an API request in order to associate a metadata
- * key-value pair with the given testId
- * @param {Number} index - index of the test object in the results list
- * @param {String} key - metadata key
- * @param {String} value - metadata value
- */
- function associateMeta(index, key, value) {
- var testId = ctrl.data.results[index].id;
- var metaUrl = [
- testapiApiUrl, '/results/', testId, '/meta/', key
- ].join('');
-
- var editFlag = key + 'Edit';
- if (value) {
- ctrl.associateRequest = $http.post(metaUrl, value)
- .success(function () {
- ctrl.data.results[index][editFlag] = false;
- }).error(function (error) {
- raiseAlert('danger', error.title, error.detail);
- });
- }
- else {
- ctrl.unassociateRequest = $http.delete(metaUrl)
- .success(function () {
- ctrl.data.results[index][editFlag] = false;
- }).error(function (error) {
- if (error.code == 404) {
- // Key doesn't exist, so count it as a success,
- // and don't raise an alert.
- ctrl.data.results[index][editFlag] = false;
- }
- else {
- raiseAlert('danger', error.title, error.detail);
- }
- });
- }
- }
-
- /**
- * Retrieve an array of available capability files from the TestAPI
- * API server, sort this array reverse-alphabetically, and store it in
- * a scoped variable.
- * Sample API return array: ["2015.03.json", "2015.04.json"]
- */
- function getVersionList() {
- if (ctrl.versionList) {
- return;
- }
- var content_url = testapiApiUrl + '/guidelines';
- ctrl.versionsRequest =
- $http.get(content_url).success(function (data) {
- ctrl.versionList = data.sort().reverse();
- }).error(function (error) {
- raiseAlert('danger', error.title,
- 'Unable to retrieve version list');
- });
- }
-
- /**
- * Get products user has management rights to or all products depending
- * on the passed in parameter value.
- */
- function getUserProducts() {
- if (ctrl.products) {
- return;
- }
- var contentUrl = testapiApiUrl + '/products';
- ctrl.productsRequest =
- $http.get(contentUrl).success(function (data) {
- ctrl.products = {};
- angular.forEach(data.products, function(prod) {
- if (prod.can_manage) {
- ctrl.products[prod.id] = prod;
- }
- });
- }).error(function (error) {
- ctrl.products = null;
- ctrl.showError = true;
- ctrl.error =
- 'Error retrieving Products listing from server: ' +
- angular.toJson(error);
- });
- }
-
- /**
- * Send a PUT request to the API server to associate a product with
- * a test result.
- */
- function associateProductVersion(result) {
- var verId = (result.selectedVersion ?
- result.selectedVersion.id : null);
- var testId = result.id;
- var url = testapiApiUrl + '/results/' + testId;
- ctrl.associateRequest = $http.put(url, {'product_version_id':
- verId})
- .success(function (data) {
- result.product_version = result.selectedVersion;
- if (result.selectedVersion) {
- result.product_version.product_info =
- result.selectedProduct;
- }
- result.productEdit = false;
- }).error(function (error) {
- raiseAlert('danger', error.title, error.detail);
- });
- }
-
- /**
- * Get all versions for a product.
- */
- function getProductVersions(result) {
- if (!result.selectedProduct) {
- result.productVersions = [];
- result.selectedVersion = null;
- return;
- }
-
- var url = testapiApiUrl + '/products/' +
- result.selectedProduct.id + '/versions';
- ctrl.getVersionsRequest = $http.get(url)
- .success(function (data) {
- result.productVersions = data;
-
- // If the test result isn't already associated to a
- // version, default it to the null version.
- if (!result.product_version) {
- angular.forEach(data, function(ver) {
- if (!ver.version) {
- result.selectedVersion = ver;
- }
- });
- }
- }).error(function (error) {
- raiseAlert('danger', error.title, error.detail);
- });
- }
-
- /**
- * Instantiate variables needed for editing product/version
- * associations.
- */
- function prepVersionEdit(result) {
- result.productEdit = true;
- if (result.product_version) {
- result.selectedProduct =
- ctrl.products[result.product_version.product_info.id];
- }
- result.selectedVersion = result.product_version;
- ctrl.getProductVersions(result);
- }
-
-
-
- function gotoResultDetail(testId, innerID) {
- $state.go('resultsDetail', {'testID': testId, 'innerID': innerID});
- }
-
- function gotoSUT(testId) {
- $state.go('sut', {'testID': testId});
- }
-
- }
-})();
diff --git a/cvp/3rd_party/static/testapi-ui/components/sut/sut.html b/cvp/3rd_party/static/testapi-ui/components/sut/sut.html
deleted file mode 100644
index 3426894c..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/sut/sut.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
-
-<link rel="stylesheet" href="testapi-ui/assets/css/combine.css" />
-
-<div class="container-fluid common-main-container">
-<h2>Endpoints</h2>
-<div class="results-table" style="margin-top:30px">
- <table class="table table-striped table-hover">
- <thead>
- <tr>
- <th>Service Name</th>
- <th>Service Type</th>
- <th>URL</th>
- <th>Enabled</th>
- </tr>
- </thead>
- <tbody style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
- <tr ng-repeat="endpoint in ctrl.sutData.endpoint_info">
- <td>{{ endpoint['Service Name'] }}</td>
- <td>{{ endpoint['Service Type'] }}</td>
- <td>{{ endpoint['URL'] }}</td>
- <td>{{ endpoint['Enabled'] }}</td>
- </tr>
- </tbody>
- </table>
-</div>
-
-<h2>Hosts</h2>
-<div ng-repeat="(host, info) in ctrl.sutData.hardware_info">
- <div class="results-table" style="margin-top:30px;">
- <table class="table table-striped table-hover">
- <tbody style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
- <tr ng-repeat="record in info">
- <td>{{ record[0] }}</td>
- <td>{{ record[1] }}</td>
- </tr>
- </tbody>
- </table>
- </div>
-</div>
-</div>
diff --git a/cvp/3rd_party/static/testapi-ui/components/sut/sutController.js b/cvp/3rd_party/static/testapi-ui/components/sut/sutController.js
deleted file mode 100644
index 3d662ffa..00000000
--- a/cvp/3rd_party/static/testapi-ui/components/sut/sutController.js
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-(function () {
- 'use strict';
-
- angular
- .module('testapiApp')
- .controller('SutController', SutController);
-
- SutController.$inject = [
- '$http', '$stateParams', 'testapiApiUrl'
- ];
-
- /**
- */
- function SutController($http, $stateParams, testapiApiUrl) {
-
- var ctrl = this;
-
- function init(){
- ctrl.sutData = {"hardware_info": {}, "endpoint_info": {}};
- ctrl.testID = $stateParams.testID;
- ctrl.getSutData();
- }
-
- ctrl.getSutData = function(){
- $http.get(testapiApiUrl + "/suts/hardware/" + ctrl.testID).then(function(resp){
- ctrl.sutData = resp.data;
- }, function(error){
- alert('Error when get SUT data');
- });
- }
-
- init();
- }
-})();