Skip to content

Commit

Permalink
#10262: Map (created with context) crashes if the export plugin is se…
Browse files Browse the repository at this point in the history
…t up to be hidden to certain groups and the user is not logged in (#10270) (#10298)

* #10262: Map (created with context) crashes if the export plugin is set up to be hidden to certain groups and the user is not logged in
Description:
- edit parseExpression method in PluginUtils to handle the chanining within cfg expressions

* #10262: Map (created with context) crashes if the export plugin is set up to be hidden to certain groups and the user is not logged in
Description:
- add unit test to test parseExpression change
  • Loading branch information
mahmoudadel54 committed May 10, 2024
1 parent dacfbc0 commit ae76e4d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
7 changes: 6 additions & 1 deletion web/client/utils/PluginsUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,12 @@ const parseExpression = (state = {}, context = {}, value) => {
};
const request = url.parse(location.href, true);
if (expression !== null) {
return eval(expression[1]);
let modifiedExpression = expression[1];
// adding optional operator to the expression
if (modifiedExpression.includes(").")) {
modifiedExpression = modifiedExpression.replaceAll(").", ")?.");
}
return eval(modifiedExpression);
}
return value;
};
Expand Down
13 changes: 12 additions & 1 deletion web/client/utils/__tests__/PluginsUtils-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,18 @@ describe('PluginsUtils', () => {
it('handleExpression', () => {
expect(PluginsUtils.handleExpression({state1: "test1"}, {context1: "test2"}, "{state.state1 + ' ' + context.context1}")).toBe("test1 test2");
});

it('handleExpression in case there is a chaining within the expression that needs to access available state', () => {
const state = {groups: ["ADMIN", "NORMAL_USER"]};
const getState = (path) => state[path];
expect(PluginsUtils.handleExpression(getState, {context1: "test2"}, "{state('groups').filter(gr => ['ADMIN'].includes(gr)).length}")).toBe(1);
expect(PluginsUtils.handleExpression(getState, {context1: "test2"}, "{state('groups').filter(gr => ['NORMAL_USER'].includes(gr)).length}")).toBe(1);
expect(PluginsUtils.handleExpression(getState, {context1: "test2"}, "{state('groups').filter(gr => ['NOT_ADMIN'].includes(gr)).length}")).toBe(0);
});
it('handleExpression in case there is a chaining within the expression that needs to access unavailable state', () => {
const state = {groups: undefined};
const getState = (path) => state[path];
expect(PluginsUtils.handleExpression(getState, {context1: "test2"}, "{state('groups').filter(gr => ['ADMIN'].includes(gr))}")).toBe(undefined);
});
it('getPluginItems', () => {
const plugins = {
Test1Plugin: {
Expand Down

0 comments on commit ae76e4d

Please sign in to comment.