summaryrefslogtreecommitdiffstats
path: root/model/permission_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/permission_test.go')
-rw-r--r--model/permission_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/model/permission_test.go b/model/permission_test.go
new file mode 100644
index 000000000..cef72af90
--- /dev/null
+++ b/model/permission_test.go
@@ -0,0 +1,18 @@
+package model
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+// This is a test to ensure that we don't accidentally add more permissions than can fit
+// in the database column for role permissions.
+func TestPermissionsLength(t *testing.T) {
+ permissionsString := ""
+ for _, permission := range ALL_PERMISSIONS {
+ permissionsString += " " + permission.Id
+ }
+
+ assert.True(t, len(permissionsString) < 4096)
+}