All checks were successful
* Add plugin option for protogen in Makefile * Fix the generator for the plugin in util/protogen * Erase convertable types, move helpful methods to gRPC protobufs * Erase helpers for convertations * Generate StableMarshlal/StableSize for protobufs by the protoc plugin Signed-off-by: Airat Arifullin a.arifullin@yadro.com
15 lines
369 B
Go
15 lines
369 B
Go
package container_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/aarifullin/v2/container"
|
|
statustest "git.frostfs.info/TrueCloudLab/aarifullin/v2/status/test"
|
|
)
|
|
|
|
func TestStatusCodes(t *testing.T) {
|
|
statustest.TestCodes(t, container.LocalizeFailStatus, container.GlobalizeFail,
|
|
container.StatusNotFound, 3072,
|
|
container.StatusEACLNotFound, 3073,
|
|
)
|
|
}
|