storybooks second release
This commit is contained in:
@ -16,3 +16,28 @@ type Story = StoryObj<typeof meta>;
|
||||
export const Default: Story = {
|
||||
render: () => <KcPageStory />
|
||||
};
|
||||
|
||||
/**
|
||||
* WithoutUserEnabled:
|
||||
* - Purpose: Tests when the user is not enabled to log in via x509.
|
||||
* - Scenario: The component renders the certificate details but does not provide the option to log in or cancel.
|
||||
* - Key Aspect: Ensures that the login buttons are not displayed when the user is not enabled.
|
||||
*/
|
||||
export const WithoutUserEnabled: Story = {
|
||||
render: () => (
|
||||
<KcPageStory
|
||||
kcContext={{
|
||||
url: {
|
||||
loginAction: "/mock-login-action"
|
||||
},
|
||||
x509: {
|
||||
formData: {
|
||||
subjectDN: "CN=John Doe, OU=Example Org, O=Example Inc, C=US",
|
||||
username: "johndoe",
|
||||
isUserEnabled: false // User not enabled for login
|
||||
}
|
||||
}
|
||||
}}
|
||||
/>
|
||||
)
|
||||
};
|
||||
|
Reference in New Issue
Block a user