File: _dry_run.py

package info (click to toggle)
behave 1.2.6-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,160 kB
  • sloc: python: 19,857; makefile: 137; sh: 18
file content (44 lines) | stat: -rw-r--r-- 1,157 bytes parent folder | download | duplicates (4)
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
# -*- coding: UTF-8 -*-
"""
Basic support to use a --dry-run mode w/ invoke tasks.

.. code-block::

    from ._dry_run import DryRunContext

    @task
    def destroy_something(ctx, path, dry_run=False):
        if dry_run:
            ctx = DryRunContext(ctx)

        # -- DRY-RUN MODE: Only echos commands.
        ctx.run("rm -rf {}".format(path))
"""

from __future__ import print_function

class DryRunContext(object):
    PREFIX = "DRY-RUN: "
    SCHEMA = "{prefix}{command}"
    SCHEMA_WITH_KWARGS = "{prefix}{command} (with kwargs={kwargs})"

    def __init__(self, ctx=None, prefix=None, schema=None):
        if prefix is None:
            prefix = self.PREFIX
        if schema is None:
            schema = self.SCHEMA

        self.ctx = ctx
        self.prefix = prefix
        self.schema = schema

    def run(self, command, **kwargs):
        message = self.schema.format(command=command,
                                     prefix=self.prefix,
                                     kwargs=kwargs)
        print(message)


    def sudo(self, command, **kwargs):
        command2 = "sudo %s" % command
        self.run(command2, **kwargs)