Giter Site home page Giter Site logo

Mock static methods about ts-mockito HOT 8 OPEN

nagrock avatar nagrock commented on August 25, 2024 40
Mock static methods

from ts-mockito.

Comments (8)

MatejSkrbis avatar MatejSkrbis commented on August 25, 2024 7

@leegee This library is no longer maintained. I like it but there are no updates from the author and he didn't give access to anyone else to update the documentation or the code. I don't know what is the correct way, but you could use spy instead of mock.

class Foo {
    static sayHello(): string {
        return 'Nop';
    }
}

const spyFoo = spy(Foo);

when(spyFoo.sayHello()).thenReturn('Yes');

console.log(Foo.sayHello()); // Will print out Yes

from ts-mockito.

MatejSkrbis avatar MatejSkrbis commented on August 25, 2024 3

You can try something like this:

class Foo {
    static sayHello(): void {
        console.log('hello')
    }
}

const mockFoo = mock<typeof Foo>(Foo);
mockFoo.sayHello(); // no more error

This is how I get around this problem.

from ts-mockito.

SatoshiKawabata avatar SatoshiKawabata commented on August 25, 2024 2

@MatejSkrbis
I tried your code and use when.

const mockFoo = mock<typeof Foo>(Foo);
mockFoo.sayHello(); // no more error
when(mockFoo.sayHello());

But I got this error. Could you run the test without error?

TypeError: mockFoo.sayHello is not a function

from ts-mockito.

MatejSkrbis avatar MatejSkrbis commented on August 25, 2024 2

@SatoshiKawabata

@MatejSkrbis
I tried your code and use when.

const mockFoo = mock<typeof Foo>(Foo);
mockFoo.sayHello(); // no more error
when(mockFoo.sayHello());

But I got this error. Could you run the test without error?

TypeError: mockFoo.sayHello is not a function

I've tried it and there is no error on my side.
I'm using latest packages of mocha and ts-mockito ("mocha": "8.2.1", "ts-mockito": "2.6.1", "typescript": "4.0.5")

from ts-mockito.

kmannislands avatar kmannislands commented on August 25, 2024 1

Mocking of static methods would be even nicer but the current state is that if the class has any static methods, they cannot be called on the mock version (rendering this package unusable in my case)

ie:

class Foo {
  static sayHello() {
    console.log('hello')
  }
}

const mockFoo = mock(Foo);
mockFoo.sayHello() // error TS2339: Property 'sayHello' does not exist on type 'Foo'.

from ts-mockito.

IonelLupu avatar IonelLupu commented on August 25, 2024

Any updates on this?

from ts-mockito.

leegee avatar leegee commented on August 25, 2024

The above example works for me, but I can't get it working IRL, where the static method to be mocked is in a dependency of the object being tested: could the documentation be updated to include the correct way to handle such a scenario?

from ts-mockito.

leegee avatar leegee commented on August 25, 2024

That was kind of you, thank you.

from ts-mockito.

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.