blob: cb6cc7b5189f4f0d006d181b2a6c37539c1de191 [file] [log] [blame]
kasar0e4186c2017-08-16 23:40:41 -07001# -*- coding: utf-8 -*-
2
3##
4# Copyright 2016-2017 VMware Inc.
5# This file is part of ETSI OSM
6# All Rights Reserved.
7#
8# Licensed under the Apache License, Version 2.0 (the "License"); you may
9# not use this file except in compliance with the License. You may obtain
10# a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17# License for the specific language governing permissions and limitations
18# under the License.
19#
20# For those usages not covered by the Apache License, Version 2.0 please
21# contact: osslegalrouting@vmware.com
22##
23
24import pytest
25import json
26
27
28def vmware_add_options(parser):
29 parser.addoption("--vcd-url", default="", help="VMware vCloud identity url")
30 parser.addoption("--vcd-username", default="", help="VMware vCloud username")
31 parser.addoption("--vcd-password", default="", help="VMware vCloud password")
32 parser.addoption("--vcd-tenant-name", default="", help="VMware vCloud tenant name")
kasar12aa2cf2018-02-02 02:51:07 -080033 parser.addoption("--vcd-org", default="", help="VMware vCloud Organization name")
kasar0e4186c2017-08-16 23:40:41 -070034
35@pytest.fixture
36def vmware(request):
37 from lib.vmware import vmware
38 access = {}
kasarf834e202017-08-24 05:21:43 -070039 access['vim-url'] = request.config.getoption("--vcd-url")
40 access['vim-username'] = request.config.getoption("--vcd-username")
41 access['vim-password'] = request.config.getoption("--vcd-password")
42 access['vim-tenant-name'] = request.config.getoption("--vcd-tenant-name")
kasar12aa2cf2018-02-02 02:51:07 -080043 access['vcd-org'] = request.config.getoption("--vcd-org")
44 access['config'] = request.config.getoption("--vim-config")
kasar0e4186c2017-08-16 23:40:41 -070045 access['vim-type'] = 'vmware'
46 access['description'] = 'pytest system test'
47
48 return vmware.Vmware(access)