* cherry pick -make new * revert to enable fix from release * attempt to hook into existing datasource editor * gSheets plugin skeleton from Rest API * Changes for database migration * fix for auth code * separate it out * action page loads! * add to explorer * create action from datasource * Editor JSON WIP * working query form * Editor JSON WIP * import to * fix toast message * redirect from datasource and editor pages * fix onboarding * fix imports and constants * refactor form out * refactor queryForm * Merge branch 'release' into feature/google-sheets * Merge branch 'release' into feature/google-sheets * initial values from settings, editor and form * Check * remove dangling code around lightTheme * Safety net * remove class * try mouseover solve * force click * changes from review * fix action form name on import * Merge branch 'release' into feature/google-sheets * minor cleanup * Merge branch 'release' into feature/google-sheets * WIP * Google sheets changes * Merge conflicts * Merging and fixes, needs refactoring * Check * Merge branch 'release' into feature/google-sheets * Fixed tests * Add cloud services env variable * Clean up saga * Clean up * Refactoring * Deleted svg file * Minor fixes * Modified design to allow behaviour in google sheets methods (#3486) * Modified design to allow behaviour in google sheets methods * Review changes * Removed sysout * Added handling of edge cases with table data * Merge branch 'release' into feature/google-sheets * Fixes * Fixes * Added validations * Improved tests * Removed extraneous injected bean * Review changes * Fixed bug with method * Changes to Google sheets plugin's request and response structures (#3692) * Method changes * Removed logging * Renaming options * Reverting pom version * Modified type of collection variables, fixed errors * Converted row offset field to one that supports dynamic bindings * Review changes * List SAAS plugin type actions under lightning menu apis (#3820) * list saas plugin type actions under lightning menu apis * combine saas plugin type actions in the other sub menu of lightning menu Co-authored-by: Hetu Nandu <hetunandu@gmail.com> * Fix merge issues * Prettified query editor and a few fixes w/ ux * Test fixes * Reformatting request * code for REST added (#3876) Co-authored-by: hetunandu <hetu@appsmith.com> * Renamed body to row object * Renamed placeholder for range * Renamed range heading * Modifications to handle range semantics * Use spreadsheet Url instead of id * Ordering of methods * Removed logging * Add tests for Dynamic text controls * Add tests for url helpers * Fix coverage config * Nevermind * Interface changes * There is no body here * Yay to hints * Delete row field is separately handled as row index * placeholder support (#4001) * Fixed tests, typos and creating new sheets with random rows * Switched to using 'rowIndex' throughout * binding path added for query input field (#4016) * - Fixed QA bugs (#4032) - Split delete sheet into two - Removed dynamic query input types from hidden keys * Proper exceptions * Removed extra logging * Throw exception if update method does not match any of the columns * Same for bulk update * Zero-indexed delete row * I'm a space bound rocket ship * Logic to register installations with cs (#4062) * Logic to register installations with cs * Clean up * Casting to string * Checking to see if this makes the test pass * Added an extra null check Co-authored-by: Piyush <piyush@codeitout.com> Co-authored-by: hetunandu <hetu@appsmith.com> Co-authored-by: Hetu Nandu <hetunandu@gmail.com> Co-authored-by: Apeksha Bhosale <7846888+ApekshaBhosale@users.noreply.github.com>
318 lines
7.9 KiB
TypeScript
318 lines
7.9 KiB
TypeScript
import {
|
|
isHidden,
|
|
getConfigInitialValues,
|
|
caculateIsHidden,
|
|
evaluateCondtionWithType,
|
|
actionPathFromName,
|
|
} from "./utils";
|
|
import { HiddenType } from "./BaseControl";
|
|
|
|
describe("isHidden test", () => {
|
|
it("Test for isHidden true", () => {
|
|
const hiddenTrueInputs: any = [
|
|
{ values: { name: "Name" }, hidden: true },
|
|
{
|
|
values: { name: "Name", number: 2, email: "temp@temp.com" },
|
|
hidden: {
|
|
conditionType: "AND",
|
|
conditions: [
|
|
{
|
|
path: "name",
|
|
value: "Name",
|
|
comparison: "EQUALS",
|
|
},
|
|
{
|
|
conditionType: "AND",
|
|
conditions: [
|
|
{
|
|
path: "number",
|
|
value: 2,
|
|
comparison: "EQUALS",
|
|
},
|
|
{
|
|
path: "email",
|
|
value: "temp@temp.com",
|
|
comparison: "EQUALS",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
values: { name: "Name" },
|
|
hidden: {
|
|
path: "name",
|
|
value: "Name",
|
|
comparison: "EQUALS",
|
|
},
|
|
},
|
|
{
|
|
values: { name: "Name", config: { type: "EMAIL" } },
|
|
hidden: {
|
|
path: "name.config.type",
|
|
value: "USER_ID",
|
|
comparison: "NOT_EQUALS",
|
|
},
|
|
},
|
|
{
|
|
values: undefined,
|
|
hidden: true,
|
|
},
|
|
{
|
|
values: null,
|
|
hidden: true,
|
|
},
|
|
];
|
|
|
|
hiddenTrueInputs.forEach((input: any) => {
|
|
expect(isHidden(input.values, input.hidden)).toBeTruthy();
|
|
});
|
|
});
|
|
|
|
it("Test for isHidden false", () => {
|
|
const hiddenFalseInputs: any = [
|
|
{ values: { name: "Name" }, hidden: false },
|
|
{
|
|
values: { name: "Name" },
|
|
hidden: {
|
|
path: "name",
|
|
value: "Different Name",
|
|
comparison: "EQUALS",
|
|
},
|
|
},
|
|
{
|
|
values: { name: "Name", config: { type: "EMAIL" } },
|
|
hidden: {
|
|
path: "config.type",
|
|
value: "EMAIL",
|
|
comparison: "NOT_EQUALS",
|
|
},
|
|
},
|
|
{
|
|
values: { name: "Name", config: { type: "Different BODY" } },
|
|
hidden: {
|
|
path: "config.type",
|
|
value: ["EMAIL", "BODY"],
|
|
comparison: "IN",
|
|
},
|
|
},
|
|
{
|
|
values: { name: "Name", config: { type: "BODY" } },
|
|
hidden: {
|
|
path: "config.type",
|
|
value: ["EMAIL", "BODY"],
|
|
comparison: "NOT_IN",
|
|
},
|
|
},
|
|
{
|
|
values: undefined,
|
|
hidden: false,
|
|
},
|
|
{
|
|
values: null,
|
|
hidden: false,
|
|
},
|
|
{
|
|
values: undefined,
|
|
},
|
|
{
|
|
values: { name: "Name" },
|
|
},
|
|
{
|
|
values: {
|
|
name: "Name",
|
|
config: { type: "EMAIL", name: "TEMP" },
|
|
contact: { number: 1234, address: "abcd" },
|
|
},
|
|
hidden: {
|
|
conditionType: "AND",
|
|
conditions: [
|
|
{
|
|
path: "contact.number",
|
|
value: 1234,
|
|
comparison: "NOT_EQUALS",
|
|
},
|
|
{
|
|
conditionType: "OR",
|
|
conditions: [
|
|
{
|
|
conditionType: "AND",
|
|
conditions: [
|
|
{
|
|
path: "config.name",
|
|
value: "TEMP",
|
|
comparison: "EQUALS",
|
|
},
|
|
{
|
|
path: "config.name",
|
|
value: "HELLO",
|
|
comparison: "EQUALS",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "config.type",
|
|
value: "EMAIL",
|
|
comparison: "NOT_EQUALS",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
];
|
|
|
|
hiddenFalseInputs.forEach((input: any) => {
|
|
expect(isHidden(input.values, input.hidden)).toBeFalsy();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("getConfigInitialValues test", () => {
|
|
it("getConfigInitialValues test", () => {
|
|
const testCases = [
|
|
{
|
|
input: [
|
|
{
|
|
sectionName: "Connection",
|
|
children: [
|
|
{
|
|
label: "Region",
|
|
configProperty:
|
|
"datasourceConfiguration.authentication.databaseName",
|
|
controlType: "DROP_DOWN",
|
|
initialValue: "ap-south-1",
|
|
options: [
|
|
{
|
|
label: "ap-south-1",
|
|
value: "ap-south-1",
|
|
},
|
|
{
|
|
label: "eu-south-1",
|
|
value: "eu-south-1",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
output: {
|
|
datasourceConfiguration: {
|
|
authentication: { databaseName: "ap-south-1" },
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: [
|
|
{
|
|
sectionName: "Connection",
|
|
children: [
|
|
{
|
|
label: "Region",
|
|
configProperty:
|
|
"datasourceConfiguration.authentication.databaseName",
|
|
controlType: "INPUT_TEXT",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
output: {},
|
|
},
|
|
{
|
|
input: [
|
|
{
|
|
sectionName: "Connection",
|
|
children: [
|
|
{
|
|
label: "Host Address (for overriding endpoint only)",
|
|
configProperty: "datasourceConfiguration.endpoints[*].host",
|
|
controlType: "KEYVALUE_ARRAY",
|
|
initialValue: ["jsonplaceholder.typicode.com"],
|
|
},
|
|
{
|
|
label: "Port",
|
|
configProperty: "datasourceConfiguration.endpoints[*].port",
|
|
dataType: "NUMBER",
|
|
controlType: "KEYVALUE_ARRAY",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
output: {
|
|
datasourceConfiguration: {
|
|
endpoints: [{ host: "jsonplaceholder.typicode.com" }],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: [
|
|
{
|
|
sectionName: "Settings",
|
|
children: [
|
|
{
|
|
label: "Smart substitution",
|
|
configProperty: "datasourceConfiguration.isSmart",
|
|
controlType: "SWITCH",
|
|
initialValue: false,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
output: {
|
|
datasourceConfiguration: {
|
|
isSmart: false,
|
|
},
|
|
},
|
|
},
|
|
];
|
|
|
|
testCases.forEach((testCase) => {
|
|
expect(getConfigInitialValues(testCase.input)).toEqual(testCase.output);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("caculateIsHidden test", () => {
|
|
it("calcualte hidden field value", () => {
|
|
const values = { name: "Name" };
|
|
const hiddenTruthy: HiddenType = {
|
|
path: "name",
|
|
comparison: "EQUALS",
|
|
value: "Name",
|
|
};
|
|
const hiddenFalsy: HiddenType = {
|
|
path: "name",
|
|
comparison: "EQUALS",
|
|
value: "Different Name",
|
|
};
|
|
expect(caculateIsHidden(values, hiddenTruthy)).toBeTruthy();
|
|
expect(caculateIsHidden(values, hiddenFalsy)).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
describe("evaluateCondtionWithType test", () => {
|
|
it("accumulate boolean of array into one based on conditionType", () => {
|
|
const andConditionType = "AND";
|
|
const orConditionType = "OR";
|
|
const booleanArray = [true, false, true];
|
|
|
|
expect(
|
|
evaluateCondtionWithType(booleanArray, andConditionType),
|
|
).toBeFalsy();
|
|
expect(
|
|
evaluateCondtionWithType(booleanArray, orConditionType),
|
|
).toBeTruthy();
|
|
});
|
|
});
|
|
|
|
describe("actionPathFromName test", () => {
|
|
it("creates path from name", () => {
|
|
const actionName = "Api5";
|
|
const name = "actionConfiguration.pluginSpecifiedTemplates[7].value";
|
|
const pathName = "Api5.config.pluginSpecifiedTemplates[7].value";
|
|
|
|
expect(actionPathFromName(actionName, name)).toEqual(pathName);
|
|
});
|
|
});
|