Giter Club home page Giter Club logo

Comments (2)

red8888 avatar red8888 commented on July 21, 2024

I'm running into this issue too.

I tried to do this Promise(Result("sdfsfsdf"))

But got this error:
AttributeError: 'Result' object has no attribute 'result_kwargs'

Promise seems to just take a Result so why is it choking on this?

from invoke.

red8888 avatar red8888 commented on July 21, 2024

I could not find a way to get invoke to just give me a properly instantiated Result that Promise would accept- issue was with that result_kwargs prop it demands. I'm probably just misunderstanding it, but it seems weird how it works. Promise inherits Result but result_kwargs is not a static property of the Result class?

I've been doing this which is not great but seems to work:

class MockPromise:
    """Manually mock invoke Promise. Currently MockContext does not support it ootb."""

    class Runner:
        def __init__(self, stderr: str = None, stdout: str = None):
            self.stderr = stderr
            self.stdout = stdout
            self.kill = lambda: "Mocked kill method"

    def __init__(self, command: str = None, stderr: str = None, stdout: str = None):
        self.command = command
        self.runner = self.Runner(stderr, stdout)

Then I just pass it in where I would Result

# In a test
    ctx = MockContext(
        run={
            "some command": MockPromise(
                stderr="Mocked stderr of command",
                stdout="Mocked stdout of command",
            )
        }
    )

Still, I'm sure there is a way to just ask invoke for a proper Promise somehow right?

from invoke.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.