Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to verify if a specific function is called

I'm trying my hand at writing TDD in Go. I am however stuck at the following.

The test to write:

func TestFeatureStart(t *testing.T) {}

Implementation to test:

func (f *Feature) Start() error {
  cmd := exec.Command(f.Cmd)
  cmd.Start()
}

How would one test this simple bit? I figured I only wanted to verify that the exec library is spoken to correctly. That's the way I would do it in Java using Mockito. Can anyone help me write this test? From what I've read the usage of interfaces is suggested.

The Feature-struct only contains a string Cmd.

like image 793
Patrick Avatar asked Sep 06 '15 16:09

Patrick


People also ask

How do you check if a function is called in Python?

has_been_called = True return func(*args) wrapper. has_been_called = False return wrapper @calltracker def doubler(number): return number * 2 if __name__ == '__main__': if not doubler. has_been_called: print "You haven't called this function yet" doubler(2) if doubler. has_been_called: print 'doubler has been called!'


1 Answers

You can fake the whole deal with interfaces, but you could also use fakeable functions. In the code:

var cmdStart = (*exec.Cmd).Start
func (f *Feature) Start() error {
    cmd := exec.Command(f.Cmd)
    return cmdStart(cmd)
}

In the tests:

called := false
cmdStart = func(*exec.Cmd) error { called = true; return nil }
f.Start()
if !called {
    t.Errorf("command didn't start")
}

See also: Andrew Gerrand's Testing Techniques talk.

like image 95
Ainar-G Avatar answered Nov 04 '22 09:11

Ainar-G