Skip to content
Snippets Groups Projects
Unverified Commit 83bf74cf authored by shaun's avatar shaun Committed by GitHub
Browse files

Fix settings jwt (#36189)

* fix types
* swap unit test step order
parent f79a58ed
No related branches found
No related tags found
No related merge requests found
......@@ -16,24 +16,19 @@ import { Flex, Stack } from "metabase/ui";
import { FormSection } from "metabase/containers/FormikForm";
import GroupMappingsWidget from "metabase/admin/settings/containers/GroupMappingsWidget";
import type { SettingValue } from "metabase-types/api";
import type { SettingElement } from "metabase/admin/settings/types";
type SettingValues = { [key: string]: SettingValue };
type SettingElement = {
// Similar to SettingElement from "metabase/admin/settings/types" but with required key
key: string;
display_name?: string;
description?: string;
type JWTFormSettingElement = Omit<SettingElement, "key"> & {
key: string; // ensuring key is required
is_env_setting?: boolean;
env_name?: string;
placeholder?: string;
default?: any;
required?: boolean;
autoFocus?: boolean;
default?: string;
};
type Props = {
elements: SettingElement[];
elements: JWTFormSettingElement[];
settingValues: SettingValues;
onSubmit: (values: SettingValues) => void;
};
......
......@@ -16,13 +16,11 @@ const GROUPS = [
const elements = [
{
// placeholder: false,
key: "jwt-enabled",
value: null,
is_env_setting: false,
env_name: "MB_JWT_ENABLED",
description: "Is JWT authentication configured and enabled?",
default: false,
originalValue: null,
display_name: "JWT Authentication",
type: "boolean",
......@@ -34,7 +32,6 @@ const elements = [
is_env_setting: false,
env_name: "MB_JWT_IDENTITY_PROVIDER_URI",
description: "URL of JWT based login page",
default: null,
originalValue: null,
display_name: "JWT Identity Provider URI",
type: "string",
......@@ -42,14 +39,12 @@ const elements = [
autoFocus: true,
},
{
// placeholder: null,
key: "jwt-shared-secret",
value: null,
is_env_setting: false,
env_name: "MB_JWT_SHARED_SECRET",
description:
"String used to seed the private key used to validate JWT messages. A hexadecimal-encoded 256-bit key (i.e., a 64-character string) is strongly recommended.",
default: null,
originalValue: null,
display_name: "String used by the JWT signing key",
type: "text",
......@@ -92,24 +87,19 @@ const elements = [
type: "string",
},
{
// placeholder: false,
key: "jwt-group-sync",
value: null,
is_env_setting: false,
env_name: "MB_JWT_GROUP_SYNC",
// description: null,
default: false,
originalValue: null,
display_name: "Synchronize group memberships",
},
{
// placeholder: {},
key: "jwt-group-mappings",
value: null,
is_env_setting: false,
env_name: "MB_JWT_GROUP_MAPPINGS",
description: "JSON containing JWT to Metabase group mappings.",
default: {},
originalValue: null,
},
];
......@@ -174,9 +164,9 @@ describe("SettingsJWTForm", () => {
await screen.findByRole("textbox", { name: /Last name attribute/ }),
ATTRS["jwt-attribute-lastname"],
);
userEvent.click(await screen.findByRole("button", { name: /Save/ }));
userEvent.click(screen.getByRole("checkbox")); // checkbox for "jwt-group-sync"
userEvent.click(screen.getByRole("checkbox")); // checkbox for "jwt-enabled"
userEvent.click(await screen.findByRole("button", { name: /Save/ }));
await waitFor(() => {
expect(onSubmit).toHaveBeenCalledWith(ATTRS);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment