1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
#!/usr/bin/env python
#
# Copyright (c) 2018 All rights reserved
# This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
"""
Define the parent for Kubernetes testing.
"""
from __future__ import division
import logging
import os
import re
import subprocess
import time
import yaml
from xtesting.core import testcase
class E2ETesting(testcase.TestCase):
"""Kubernetes test runner"""
# pylint: disable=too-many-instance-attributes
__logger = logging.getLogger(__name__)
config = '/root/.kube/config'
gcr_repo = os.getenv("MIRROR_REPO", "gcr.io")
k8s_gcr_repo = os.getenv("MIRROR_REPO", "k8s.gcr.io")
def __init__(self, **kwargs):
super(E2ETesting, self).__init__(**kwargs)
self.cmd = []
self.dir_results = "/home/opnfv/functest/results"
self.res_dir = os.path.join(self.dir_results, self.case_name)
self.result = 0
self.start_time = 0
self.stop_time = 0
self.output_log_name = 'functest-kubernetes.log'
self.output_debug_log_name = 'functest-kubernetes.debug.log'
def run_kubetest(self, **kwargs): # pylint: disable=too-many-branches
"""Run the test suites"""
cmd_line = [
'ginkgo', '--nodes={}'.format(kwargs.get("nodes", 1)),
'--noColor', '/usr/local/bin/e2e.test', '--',
'-kubeconfig', self.config,
'-provider', 'skeleton', '-report-dir', self.res_dir]
for arg in kwargs.get("ginkgo", {}):
cmd_line.extend(['-ginkgo.{}'.format(arg), kwargs["ginkgo"][arg]])
if "NON_BLOCKING_TAINTS" in os.environ:
cmd_line.extend(
['-non-blocking-taints', os.environ["NON_BLOCKING_TAINTS"]])
cmd_line.extend(['-disable-log-dump', 'true'])
self._generate_repo_list_file()
self.__logger.info("Starting k8s test: '%s'.", cmd_line)
env = os.environ.copy()
env["KUBE_TEST_REPO_LIST"] = "{}/repositories.yml".format(self.res_dir)
process = subprocess.Popen(cmd_line, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, env=env)
boutput = process.stdout.read()
with open(os.path.join(self.res_dir, 'e2e.log'), 'wb') as foutput:
foutput.write(boutput)
grp = re.search(
r'^(FAIL|SUCCESS)!.* ([0-9]+) Passed \| ([0-9]+) Failed \|'
r' ([0-9]+) Pending \| ([0-9]+) Skipped',
boutput.decode("utf-8", errors="ignore"),
re.MULTILINE | re.DOTALL)
assert grp
self.details['passed'] = int(grp.group(2))
self.details['failed'] = int(grp.group(3))
self.details['pending'] = int(grp.group(4))
self.details['skipped'] = int(grp.group(5))
self.__logger.debug("details: %s", self.details)
self.result = self.details['passed'] * 100 / (
self.details['passed'] + self.details['failed'] +
self.details['pending'])
self.__logger.debug("result: %s", self.result)
if grp.group(1) == 'FAIL':
grp2 = re.search(
r'^(Summarizing [0-9]+ Failure.*)Ran',
boutput.decode("utf-8", errors="ignore"),
re.MULTILINE | re.DOTALL)
if grp2:
self.__logger.error(grp2.group(1))
def run(self, **kwargs):
if not os.path.exists(self.res_dir):
os.makedirs(self.res_dir)
if not os.path.isfile(self.config):
self.__logger.error(
"Cannot run k8s testcases. Config file not found")
return self.EX_RUN_ERROR
self.start_time = time.time()
try:
self.run_kubetest(**kwargs)
res = self.EX_OK
except Exception: # pylint: disable=broad-except
self.__logger.exception("Error with running kubetest:")
res = self.EX_RUN_ERROR
self.stop_time = time.time()
return res
def _generate_repo_list_file(self):
"""Generate the repositories list for the test."""
# The list is taken from
# https://github.com/kubernetes/kubernetes/blob/master/test/utils/image/manifest.go
# It may needs update regularly
gcr_repo = os.getenv("GCR_REPO", self.gcr_repo)
k8s_gcr_repo = os.getenv("K8S_GCR_REPO", self.k8s_gcr_repo)
repo_list = {
"GcAuthenticatedRegistry": "{}/authenticated-image-pulling".format(
gcr_repo),
"E2eRegistry": "{}/kubernetes-e2e-test-images".format(
gcr_repo),
"PromoterE2eRegistry": "{}/e2e-test-images".format(
k8s_gcr_repo),
"BuildImageRegistry": "{}/build-image".format(k8s_gcr_repo),
"InvalidRegistry": "invalid.com/invalid",
"GcEtcdRegistry": "{}".format(k8s_gcr_repo),
"GcRegistry": "{}".format(k8s_gcr_repo),
"SigStorageRegistry": "{}/sig-storage".format(k8s_gcr_repo),
"PrivateRegistry": "{}/k8s-authenticated-test".format(
gcr_repo),
"SampleRegistry": "{}/google-samples".format(gcr_repo),
"GcrReleaseRegistry": "{}/gke-release".format(gcr_repo),
"MicrosoftRegistry": "mcr.microsoft.com",
}
with open("{}/repositories.yml".format(self.res_dir), 'w') as file:
yaml.dump(repo_list, file)
|