Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
#10: Add inputs and expected outputs for MyUser user retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
laingsimon committed Oct 28, 2021
1 parent e1e650d commit dbe90a5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions TestScenarios/Read_Users/Database.MySql.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DROP USER If Exists MyUser@localhost;
DROP User If Exists MyDisabledUser@localhost;
CREATE USER MyUser@localhost IDENTIFIED BY '123_aBC';
CREATE USER MyDisabledUser@localhost IDENTIFIED BY '123_aBC' ACCOUNT LOCK;
11 changes: 11 additions & 0 deletions TestScenarios/Read_Users/ExpectedOutput.MySql.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"users": {
"MyUser@localhost": {
"Type": "DatabaseAuthority"
},
"MyDisabledUser@localhost": {
"Type": "DatabaseAuthority",
"Enabled": false
}
}
}

0 comments on commit dbe90a5

Please sign in to comment.