Grafana's backend has been developed for a long time with a mix of code styles. This guide explains how we want to write Go code in the future.
Unless stated otherwise, use the guidelines listed in the following articles:
To ensure consistency across the Go codebase, we require all code to pass a number of linter checks.
We use GolangCI-Lint with a custom configuration .golangci.toml to run these checks.
To run all linters, use the lint-go
Makefile target:
make lint-go
We value clean and readable code, that is loosely coupled and covered by unit tests. This makes it easier to collaborate and maintain the code.
Tests must use the standard library, testing
. For assertions, prefer using testify.
We have a testsuite package which provides utilities for package-level setup and teardown.
Currently, this is just used to ensure that test databases are correctly set up and torn down, but it also provides a place we can attach future tasks.
Each package SHOULD include a TestMain function that calls testsuite.Run(m)
:
package mypkg
import (
"testing"
"github.com/grafana/grafana/pkg/tests/testsuite"
)
func TestMain(m *testing.M) {
testsuite.Run(m)
}
You only need to define TestMain
in one _test.go
file within each package.
Warning For tests that use the database, you MUST define
TestMain
so that the test databases can be cleaned up properly.
We run unit and integration tests separately, to help keep our CI pipeline running smoothly and provide a better developer experience.
To properly mark a test as being an integration test, you must format your test function definition as follows, with the function name starting with TestIntegration
and the check for testing.Short()
:
func TestIntegrationFoo(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
// function body
}
Warning If you do not follow this convention, your integration test may be run twice or not run at all.
Use respectively assert.*
functions to make assertions that
should not halt the test ("soft checks") and require.*
functions to make assertions that should halt the test ("hard checks"). Typically, you want to use the latter type of
check to assert that errors have or have not happened, since continuing the test after such an assertion fails is
chaotic (the system under test will be in an undefined state) and you'll often have segfaults in practice.
Use t.Run
to group sub-test cases, since it allows common setup and teardown
code, plus lets you run each test case in isolation when debugging. Don't use t.Run
to e.g. group assertions.
Use t.Cleanup
to clean up resources in tests. It's a preferable to defer
, as it can be called from helper functions. It will always execute after the test is over in reverse call order (last t.Cleanup
first, same as defer
).
Optionally, we use mock.Mock
package to write mocks.
This is useful when you expect different behaviors of the same function.
- Use
Once()
orTimes(n)
to make a method call workn
times. - Use
mockedClass.AssertExpectations(t)
to guarantee that methods are called the times asked.- If any method is not called the expected amount of times, the test fails.
- You can pass
mock.Anything
as argument if you don't care about the argument passed. - Use
mockedClass.AssertNotCalled(t, "MethodName")
to assert that a method was not called.
Given this interface:
type MyInterface interface {
Get(ctx context.Context, id string) (Object, error)
}
Mock implementation should be like this:
import "github.com/stretchr/testify/mock"
type MockImplementation struct {
mock.Mock
}
func (m *MockImplementation) Get(ctx context.Context, id string) (Object, error) {
args := m.Called(ctx, id) // Pass all arguments in order here
return args.Get(0).(Object), args.Error(1)
}
And use it in the following way:
objectToReturn := Object{Message: "abc"}
errToReturn := errors.New("my error")
myMock := &MockImplementation{}
defer myMock.AssertExpectations(t)
myMock.On("Get", mock.Anything, "id1").Return(Object{}, errToReturn).Once()
myMock.On("Get", mock.Anything, "id2").Return(objectToReturn, nil).Once()
anyService := NewService(myMock)
resp, err := anyService.Call("id1")
assert.Error(t, err, errToReturn)
resp, err = anyService.Call("id2")
assert.Nil(t, err)
assert.Equal(t, resp.Message, objectToReturn.Message)
When an interface to test is too big, it may be toilsome to mock each function manually. To avoid this, you can
use mockery
library to generate the mocks.
The command is like the following (there are more options documented if you need to use another one):
mockery --name InterfaceName --structname MockImplementationName --inpackage --filename my_implementation_mock.go
--name
: Interface to mock--structname
: Mock implementation name--inpackage
: To use the same package name as the interface--filename
: Your mock generated file name
If any interface signature changes, executing the command again updates the mock.
Additionally, you can put go:generate
command on the top of the file as a comment. It's useful because some IDEs
like Goland and Visual Studio Code allows executing scripts from the IDE.
package <package>
import (
...
)
//go:generate mockery --name InterfaceName --structname MockImplementationName --inpackage --filename my_implementation_mock.go
As a general rule of thumb, avoid using global variables, since they make the code difficult to maintain and reason about, and to write tests for. The Grafana codebase currently does use a lot of global variables, especially when it comes to configuration, but that is a problem we're trying to solve.
In general, use value types and only reach for pointers when there's a real need. The reason being that pointers increase the risk of bugs, since a pointer can be nil and dereferencing a nil pointer leads to a panic (AKA segfault). Valid reasons to use a pointer include (but not necessarily limited to):
- You might need to pass a modifiable argument to a function
- Copying an object might incur a performance hit (benchmark to check your assumptions, copying is often faster than allocating heap memory)
- You might need
nil
to tell if a variable isn't set, although usually it's better to use the type's zero value to tell instead
In database related code, we follow certain patterns.
While they can be useful, we don't generally use foreign key constraints in Grafana, for historical and technical reasons. See this comment by Torkel for context.
If a column, or column combination, should be unique, add a corresponding uniqueness constraint through a migration.
The Session.Insert() and Session.InsertOne() are poorly documented and return the number of affected rows contrary to a common mistake that they return the newly introduced primary key. Therefore, contributors should be extra cautious when using them.
The same applies for the respective Engine.Insert() and Engine.InsertOne()
The simplejson package is used a lot throughout the backend codebase, but it's legacy, so if at all possible avoid using it in new code. Use encoding/json instead.