CLI: Add command to migrate all datasources to use encrypted password fields (#17118)

closes: #17107
(cherry picked from commit 151b24b95f)
This commit is contained in:
Andrej Ocenas
2019-05-27 14:30:34 +02:00
committed by Marcus Efraimsson
parent efd14ac7db
commit 7b0efb787b
14 changed files with 266 additions and 25 deletions
+9
View File
@@ -37,3 +37,12 @@ func TestDateAge(t *testing.T) {
So(GetAgeString(time.Now().Add(-time.Hour*24*409)), ShouldEqual, "1y")
})
}
func TestToCamelCase(t *testing.T) {
Convey("ToCamelCase", t, func() {
So(ToCamelCase("kebab-case-string"), ShouldEqual, "kebabCaseString")
So(ToCamelCase("snake_case_string"), ShouldEqual, "snakeCaseString")
So(ToCamelCase("mixed-case_string"), ShouldEqual, "mixedCaseString")
So(ToCamelCase("alreadyCamelCase"), ShouldEqual, "alreadyCamelCase")
})
}