44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import React from "react";
|
|
import type { Meta, StoryObj } from "@storybook/react";
|
|
import { createKcPageStory } from "../KcPageStory";
|
|
|
|
const { KcPageStory } = createKcPageStory({ pageId: "login-x509-info.ftl" });
|
|
|
|
const meta = {
|
|
title: "login/login-x509-info.ftl",
|
|
component: KcPageStory
|
|
} satisfies Meta<typeof KcPageStory>;
|
|
|
|
export default meta;
|
|
|
|
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
|
|
}
|
|
}
|
|
}}
|
|
/>
|
|
)
|
|
};
|