-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These are the Composition utilities that will be used in the system feature behave tests. Change-Id: I3e8b466edc43930c5646aa6b030a2bb8e131f3d7 Signed-off-by: Latitia M Haskins <latitia.haskins@gmail.com>
- Loading branch information
Showing
1 changed file
with
179 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
# Copyright IBM Corp. 2016 All Rights Reserved. | ||
# | ||
# 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. | ||
# | ||
|
||
import os | ||
import subprocess | ||
import json | ||
import uuid | ||
|
||
|
||
class ContainerData: | ||
def __init__(self, containerName, ipAddress, envFromInspect, composeService, ports): | ||
self.containerName = containerName | ||
self.ipAddress = ipAddress | ||
self.envFromInspect = envFromInspect | ||
self.composeService = composeService | ||
self.ports = ports | ||
|
||
def getEnv(self, key): | ||
envValue = None | ||
for val in self.envFromInspect: | ||
if val.startswith(key): | ||
envValue = val[len(key):] | ||
break | ||
if envValue == None: | ||
raise Exception("ENV key not found ({0}) for container ({1})".format(key, self.containerName)) | ||
return envValue | ||
|
||
|
||
class Composition: | ||
|
||
def __init__(self, context, composeFilesYaml, projectName = None, | ||
force_recreate = True, components = []): | ||
if not projectName: | ||
projectName = str(uuid.uuid1()).replace('-','') | ||
self.projectName = projectName | ||
self.context = context | ||
self.containerDataList = [] | ||
self.composeFilesYaml = composeFilesYaml | ||
self.serviceNames = [] | ||
self.serviceNames = self._collectServiceNames() | ||
self.up(context, force_recreate, components) | ||
|
||
def _collectServiceNames(self): | ||
'First collect the services names.' | ||
servicesList = [service for service in self.issueCommand(["config", "--services"]).splitlines() if "WARNING" not in service] | ||
return servicesList | ||
|
||
def up(self, context, force_recreate=True, components=[]): | ||
self.serviceNames = self._collectServiceNames() | ||
command = ["up", "-d"] | ||
if force_recreate: | ||
command += ["--force-recreate"] | ||
self.issueCommand(command + components) | ||
|
||
def scale(self, context, serviceName, count=1): | ||
self.serviceNames = self._collectServiceNames() | ||
command = ["scale", "%s=%d" %(serviceName, count)] | ||
self.issueCommand(command) | ||
|
||
def stop(self, context, components=[]): | ||
self.serviceNames = self._collectServiceNames() | ||
command = ["stop"] | ||
self.issueCommand(command, components) | ||
|
||
def start(self, context, components=[]): | ||
self.serviceNames = self._collectServiceNames() | ||
command = ["start"] | ||
self.issueCommand(command, components) | ||
|
||
def parseComposeFilesArg(self, composeFileArgs): | ||
composeFileList = [] | ||
for composeFile in composeFileArgs.split(): | ||
if not os.path.isdir(composeFile): | ||
composeFileList.append(composeFile) | ||
else: | ||
composeFileList.append(os.path.join(composeFile, 'docker-compose.yml')) | ||
|
||
argSubList = [["-f", composeFile] for composeFile in composeFileList] | ||
args = [arg for sublist in argSubList for arg in sublist] | ||
return args | ||
|
||
def getFileArgs(self): | ||
return self.parseComposeFilesArg(self.composeFilesYaml) | ||
|
||
def getEnvAdditions(self): | ||
myEnv = {} | ||
myEnv["COMPOSE_PROJECT_NAME"] = self.projectName | ||
myEnv["CORE_PEER_NETWORKID"] = self.projectName | ||
return myEnv | ||
|
||
def getEnv(self): | ||
myEnv = os.environ.copy() | ||
for key,value in self.getEnvAdditions().iteritems(): | ||
myEnv[key] = value | ||
return myEnv | ||
|
||
def refreshContainerIDs(self): | ||
containers = self.issueCommand(["ps", "-q"]).split() | ||
return containers | ||
|
||
def getContainerIP(self, container): | ||
container_ipaddress = None | ||
if container['State']['Running']: | ||
container_ipaddress = container['NetworkSettings']['IPAddress'] | ||
if not container_ipaddress: | ||
# ipaddress not found at the old location, try the new location | ||
container_ipaddress = container['NetworkSettings']['Networks'].values()[0]['IPAddress'] | ||
return container_ipaddress | ||
|
||
def issueCommand(self, command, components=[]): | ||
componentList = [] | ||
useCompose = True | ||
for component in components: | ||
if '_' in component: | ||
useCompose = False | ||
componentList.append("%s_%s" % (self.projectName, component)) | ||
else: | ||
break | ||
|
||
# If we need to perform an operation on a specific container, use | ||
# docker not docker-compose | ||
if useCompose: | ||
cmdArgs = self.getFileArgs()+ command + components | ||
cmd = ["docker-compose"] + cmdArgs | ||
else: | ||
cmdArgs = command + componentList | ||
cmd = ["docker"] + cmdArgs | ||
|
||
output = subprocess.check_output(cmd, env=self.getEnv()) | ||
|
||
# Don't rebuild if ps command | ||
if command[0] !="ps" and command[0] !="config": | ||
self.rebuildContainerData() | ||
return output | ||
|
||
def rebuildContainerData(self): | ||
self.containerDataList = [] | ||
for containerID in self.refreshContainerIDs(): | ||
# get container metadata | ||
container = json.loads(subprocess.check_output(["docker", "inspect", containerID]))[0] | ||
# container name | ||
container_name = container['Name'][1:] | ||
# container ip address (only if container is running) | ||
container_ipaddress = self.getContainerIP(container) | ||
# container environment | ||
container_env = container['Config']['Env'] | ||
# container exposed ports | ||
container_ports = container['NetworkSettings']['Ports'] | ||
# container docker-compose service | ||
container_compose_service = container['Config']['Labels']['com.docker.compose.service'] | ||
container_data = ContainerData(container_name, | ||
container_ipaddress, | ||
container_env, | ||
container_compose_service, | ||
container_ports) | ||
self.containerDataList.append(container_data) | ||
|
||
def decompose(self): | ||
self.issueCommand(["unpause"]) | ||
self.issueCommand(["down"]) | ||
self.issueCommand(["kill"]) | ||
self.issueCommand(["rm", "-f"]) | ||
env = self.getEnv() | ||
|
||
# Now remove associated chaincode containers if any | ||
cmd = ["docker", "ps", "-qa", "--filter", "name={0}".format(self.projectName)] | ||
output = subprocess.check_output(cmd, env=env) |