1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-06 21:45:24 +01:00
Files
atomic/Atomic/stop.py
Yu Qi Zhang 14e878dbfc Fix tests for f26
Fix test failures after updating papr to test with f26 atomic/cloud
images instead of f25, with the following changes:

1. Remove dependency on docker hub tester image. Instead, mimic
what ostree/rpm-ostree does and use a recursive .papr.sh script
to install the necessary packages to the base f26 image in the
fedora registry. This fixes tests on the atomic host since python3.6
is being used, and prevents future tests from testing the wrong
version. (Note this is slightly slower due to having to install
packages during the test rather than using a pre-built image).

2. Fix some pylint errors, and mask others for now

3. Fix failing integration tests due to inter-test interference

4. Remove unnecessary deepcopy in container filter

5. Add compatibility for both c-s-s and d-s-s in storage

6. Update expected sha256 values for dockertar test

Remaining issues:

1. test_storage should possibly be reworked. The current test
setup is conflicting with the new default of overlay as a driver.
For now, the test for generated d-s-s is disabled.

2. some storage commands are still using "docker-storage-setup"
instead of "container-storage-setup". There is a backward
compatible check in place that should be reworked in the future

3. some masked pylint errors should be further investigated

4. keep the dockerfile for the project atomic tester image for now
(bump to 26), since its a little easier and faster to set up with

Signed-off-by: Yu Qi Zhang <jerzhang@redhat.com>

Closes: #1076
Approved by: baude
2017-08-23 18:33:48 +00:00

44 lines
1.4 KiB
Python

import argparse
from . import util
from Atomic.backendutils import BackendUtils
import sys
try:
from . import Atomic
except ImportError:
from atomic import Atomic # pylint: disable=relative-import
def cli(subparser):
# atomic stop
stopp = subparser.add_parser(
"stop", help=_("execute container image stop method"),
epilog="atomic will just stop the container if it is running, if "
"image does not specify LABEL STOP")
stopp.set_defaults(_class=Stop, func='stop')
util.add_opt(stopp)
stopp.add_argument("container", help=_("container name or ID"))
stopp.add_argument("--display", default=False, action="store_true",
help=_("preview the command that %s would execute") % sys.argv[0])
stopp.add_argument("args", nargs=argparse.REMAINDER,
help=_("Additional arguments appended to the image "
"stop method"))
ATOMIC_CONFIG = util.get_atomic_config()
storage = ATOMIC_CONFIG.get('default_storage', "docker")
class Stop(Atomic):
def __init__(self): # pylint: disable=useless-super-delegation
super(Stop, self).__init__()
def stop(self):
if self.args.debug:
util.write_out(str(self.args))
beu = BackendUtils()
be, con_obj = beu.get_backend_and_container_obj(self.args.container, storage)
be.stop_container(con_obj, atomic=self, args=self.args)
return 0