spock - mock static method is not working
Asked Answered
B

3

8

I am trying to mock the one of static method readAttributes using groovy's metaClass convention, but the real method get invoked.

This is how I mocked the static function:

def "test"() {
    File file = fold.newFile('file.txt')
    Files.metaClass.static.readAttributes = { path, cls ->
        null
    }

    when:
        fileUtil.fileCreationTime(file)
    then:
        1 * fileUtil.LOG.debug('null attribute')
}

Am I doing something wrong here?

My java method

public Object fileCreationTime(File file) {
    try {
        BasicFileAttributes attributes = Files.readAttributes(file.toPath(), BasicFileAttributes.class);
        if(attributes == null) {
            LOG.debug("null attribute");
        }  
        //doSomething
    } catch (IOException exception) {
        //doSomething
    }
    return new Object();
}
Bristol answered 26/4, 2016 at 13:56 Comment(0)
B
8

I resolved the issue using one level of indirection. I created an instance method of the test class which acts like a wrapper for this static call.

public BasicFileAttributes readAttrs(File file) throws IOException {
    return Files.readAttributes(file.toPath(), BasicFileAttributes.class);
}

and from the test I mocked the instance method.

FileUtil util = Spy(FileUtil);
util.readAttrs(file) >> { null }

which resolved my issue.

Bristol answered 27/4, 2016 at 8:33 Comment(0)
E
5

The short answer is that it's not possible, please have a look at this question.

It would be possible if either:

  • code under test was written in groovy
  • mocked (altered) class must be instantiated in groovy code.

The workaround is to extract the logic returning the attributes to another class which will be mocked instead of use Files directly.

Eras answered 26/4, 2016 at 14:10 Comment(9)
@Suganthan have you copied the example I provided as is? Cloaure's args are also very important.Eras
Yes, I did the same, the intermediate assertion workd with no issue, but still the method get invokedBristol
@Suganthan could you please then provide na runnable example? Without it, it might difficult to help.Eras
@Suganthan, if you found my answer useful please accept and upvote it.Eras
I thought it is due to final class(Files) and it is private method is a root causeBristol
@Suganthan, final classes can be mocked as well, see hereEras
Sorry it is not private method private constructor. Private Constructor might be a cause. Files having private constructor, but not the String classBristol
@Suganthan, may be. However in groovy private is not private at all ;)Eras
Yes, that make sense, sure I ll to find out the root cause and update my answer :)Bristol
B
4

you can use GroovySpy for this, as stated in spock documentation

In your case, it would be:

def filesClass = GroovySpy(Files, global: true)
filesClass.readAttributes(*_) >> null
Bilek answered 14/8, 2018 at 15:29 Comment(1)
This does not work when mocking static (Java) class within the object of test. In other words, the one instantiated not from Groovy. See #15824815Serilda

© 2022 - 2024 — McMap. All rights reserved.