aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_opt_userauth_test.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Build with "go tool" and hackishly bundle code from same package into one ↵EuAndreh2024-08-121-644/+0
| | | | file each
* go fmt ./...Yasuhiro Matsumoto2024-01-251-0/+1
|
* Fix _auth_* parameter checkG.J.R. Timmer2019-08-221-1/+25
| | | Fixes: #724
* Fix misspell issues.Mario Trangoni2018-11-211-2/+2
| | | | | | | | | | | See, $ gometalinter --vendor --disable-all --enable=misspell ./... sqlite3.go:1379:45:warning: "succesfully" is a misspelling of "successfully" (misspell) sqlite3.go:1390:30:warning: "registerd" is a misspelling of "registered" (misspell) sqlite3_func_crypt.go:16:27:warning: "ceasar" is a misspelling of "caesar" (misspell) sqlite3_func_crypt.go:43:59:warning: "Ceasar" is a misspelling of "Caesar" (misspell) sqlite3_opt_userauth_test.go:450:27:warning: "succesful" is a misspelling of "successful" (misspell) sqlite3_opt_userauth_test.go:456:27:warning: "succesful" is a misspelling of "successful" (misspell)
* Rewrite Tests UserAuthGert-Jan Timmer2018-06-121-1271/+508
| | | | * Removed Goconvey * Fix coveralls.io
* Fix: test suite remove created filesGert-Jan Timmer2018-06-051-5/+33
|
* ADD: User Authentication Password EncodersGert-Jan Timmer2018-06-051-0/+244
| | | Allow user to choose how to encode passwords with connection string overrides of embedded `sqlite_crypt` function.
* Update TestUserAuthentication*Gert-Jan Timmer2018-06-041-53/+67
| | | | | | * Update goconvey profile * Divided tests in categories Reference #580
* Implemented goconvey for User Authentication TestsGert-Jan Timmer2018-06-041-153/+1040
| | | Reference #580
* Add additional testsGert-Jan Timmer2018-06-011-16/+141
| | | Reference: #580
* StashGert-Jan Timmer2018-05-311-5/+49
| | | [ci skip]
* UPD: TestAuthCreateDatabaseGert-Jan Timmer2018-05-311-9/+10
| | | | | * Renamed test * Implemented 'exists' test * WIP #580
* ADD: User authenticationGert-Jan Timmer2018-05-301-0/+39
* User Authentication Implementation * Rename file to conform to fileformat `sqlite3_*_omit.go` * Updated sqlite3-binding.* with new upgrade tool * Add: callbackRetNil required for error type return because of adding `RegisterFunc`s directly on the connection. * Add: TestCreateAuthDatabase