jsf.js_next_gen 4.0.0-RC.2 → 4.0.0-RC.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. package/dist/docs/assets/main.js +56 -52
  2. package/dist/docs/assets/style.css +23 -0
  3. package/dist/docs/functions/myfaces.ab.html +2 -2
  4. package/dist/window/faces-development.js +789 -306
  5. package/dist/window/faces-development.js.br +0 -0
  6. package/dist/window/faces-development.js.gz +0 -0
  7. package/dist/window/faces-development.js.map +1 -1
  8. package/dist/window/faces.js +1 -1
  9. package/dist/window/faces.js.LICENSE.txt +0 -2
  10. package/dist/window/faces.js.br +0 -0
  11. package/dist/window/faces.js.gz +0 -0
  12. package/dist/window/faces.js.map +1 -1
  13. package/dist/window/jsf-development.js +789 -306
  14. package/dist/window/jsf-development.js.br +0 -0
  15. package/dist/window/jsf-development.js.gz +0 -0
  16. package/dist/window/jsf-development.js.map +1 -1
  17. package/dist/window/jsf.js +1 -1
  18. package/dist/window/jsf.js.LICENSE.txt +0 -2
  19. package/dist/window/jsf.js.br +0 -0
  20. package/dist/window/jsf.js.gz +0 -0
  21. package/dist/window/jsf.js.map +1 -1
  22. package/package.json +16 -16
  23. package/src/main/test.xml +23 -0
  24. package/src/main/typescript/@types/definitions/index.d.ts +19 -2
  25. package/src/main/typescript/api/_api.ts +5 -4
  26. package/src/main/typescript/impl/AjaxImpl.ts +109 -37
  27. package/src/main/typescript/impl/core/Const.ts +48 -38
  28. package/src/main/typescript/impl/util/Assertions.ts +16 -8
  29. package/src/main/typescript/impl/util/AsyncQueue.ts +1 -1
  30. package/src/main/typescript/impl/util/ExtDomQuery.ts +12 -4
  31. package/src/main/typescript/impl/util/HiddenInputBuilder.ts +78 -0
  32. package/src/main/typescript/impl/util/Lang.ts +9 -11
  33. package/src/main/typescript/impl/xhrCore/ErrorData.ts +15 -10
  34. package/src/main/typescript/impl/xhrCore/EventData.ts +2 -2
  35. package/src/main/typescript/impl/xhrCore/IResponseProcessor.ts +8 -1
  36. package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +40 -22
  37. package/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts +4 -4
  38. package/src/main/typescript/impl/xhrCore/Response.ts +25 -25
  39. package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +157 -98
  40. package/src/main/typescript/impl/xhrCore/XhrFormData.ts +4 -2
  41. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +24 -14
  42. package/src/main/typescript/myfaces/OamSubmit.ts +29 -13
  43. package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +1 -1
  44. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +72 -0
  45. package/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.ts +40 -1
  46. package/src/main/typescript/test/impl/ImplTest.spec.ts +3 -3
  47. package/src/main/typescript/test/impl/ImplTest_23.spec.ts +3 -3
  48. package/src/main/typescript/test/xhrCore/EventTests.spec.ts +1 -1
  49. package/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.ts +203 -0
  50. package/src/main/typescript/test/xhrCore/OamSubmitTest.spec.ts +177 -0
  51. package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +116 -9
  52. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +236 -11
  53. package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +39 -3
  54. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +368 -31
  55. package/src/main/typescript/test/xhrCore/ResponseTest23.spec.ts +41 -7
  56. package/src/main/typescript/test.xml +6 -0
  57. package/src/main/typescript/tsconfig.json +1 -1
  58. package/src/tmp/test.html +12 -88
  59. package/target/api/_api.js +5 -4
  60. package/target/api/_api.js.map +1 -1
  61. package/target/impl/AjaxImpl.js +97 -26
  62. package/target/impl/AjaxImpl.js.map +1 -1
  63. package/target/impl/core/Const.js +48 -37
  64. package/target/impl/core/Const.js.map +1 -1
  65. package/target/impl/core/Context.js +10 -0
  66. package/target/impl/core/Context.js.map +1 -0
  67. package/target/impl/util/Assertions.js +12 -7
  68. package/target/impl/util/Assertions.js.map +1 -1
  69. package/target/impl/util/AsyncQueue.js.map +1 -1
  70. package/target/impl/util/ExtDomQuery.js +9 -2
  71. package/target/impl/util/ExtDomQuery.js.map +1 -1
  72. package/target/impl/util/HiddenElementBuilder.js +7 -0
  73. package/target/impl/util/HiddenElementBuilder.js.map +1 -0
  74. package/target/impl/util/HiddenInputBuilder.js +69 -0
  75. package/target/impl/util/HiddenInputBuilder.js.map +1 -0
  76. package/target/impl/util/Lang.js +8 -10
  77. package/target/impl/util/Lang.js.map +1 -1
  78. package/target/impl/xhrCore/ErrorData.js +10 -8
  79. package/target/impl/xhrCore/ErrorData.js.map +1 -1
  80. package/target/impl/xhrCore/EventData.js +1 -1
  81. package/target/impl/xhrCore/EventData.js.map +1 -1
  82. package/target/impl/xhrCore/RequestContext.js +11 -0
  83. package/target/impl/xhrCore/RequestContext.js.map +1 -0
  84. package/target/impl/xhrCore/RequestDataResolver.js +34 -15
  85. package/target/impl/xhrCore/RequestDataResolver.js.map +1 -1
  86. package/target/impl/xhrCore/ResonseDataResolver.js +3 -3
  87. package/target/impl/xhrCore/ResonseDataResolver.js.map +1 -1
  88. package/target/impl/xhrCore/Response.js +13 -13
  89. package/target/impl/xhrCore/Response.js.map +1 -1
  90. package/target/impl/xhrCore/ResponseProcessor.js +136 -82
  91. package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
  92. package/target/impl/xhrCore/XhrFormData.js +4 -2
  93. package/target/impl/xhrCore/XhrFormData.js.map +1 -1
  94. package/target/impl/xhrCore/XhrRequest.js +20 -11
  95. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  96. package/target/myfaces/OamSubmit.js +23 -14
  97. package/target/myfaces/OamSubmit.js.map +1 -1
  98. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +1 -1
  99. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
  100. package/target/test/frameworkBase/_ext/shared/StandardInits.js +63 -0
  101. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
  102. package/target/test/frameworkBase/_ext/shared/XmlResponses.js +37 -1
  103. package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
  104. package/target/test/impl/ImplTest.spec.js +2 -2
  105. package/target/test/impl/ImplTest.spec.js.map +1 -1
  106. package/target/test/impl/ImplTest_23.spec.js +2 -2
  107. package/target/test/impl/ImplTest_23.spec.js.map +1 -1
  108. package/target/test/xhrCore/EventTests.spec.js +1 -1
  109. package/target/test/xhrCore/EventTests.spec.js.map +1 -1
  110. package/target/test/xhrCore/NamespacesRequestTest.spec.js +203 -0
  111. package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +1 -0
  112. package/target/test/xhrCore/OamSubmitTest.spec.js +180 -0
  113. package/target/test/xhrCore/OamSubmitTest.spec.js.map +1 -0
  114. package/target/test/xhrCore/RequestParamsTest.spec.js +101 -4
  115. package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
  116. package/target/test/xhrCore/RequestTest.spec.js +212 -9
  117. package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
  118. package/target/test/xhrCore/RequestTest_23.spec.js +34 -2
  119. package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -1
  120. package/target/test/xhrCore/ResponseTest.spec.js +303 -22
  121. package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
  122. package/target/test/xhrCore/ResponseTest23.spec.js +36 -6
  123. package/target/test/xhrCore/ResponseTest23.spec.js.map +1 -1
  124. package/tmp.xml +36 -0
  125. package/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -4
  126. package/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -4
  127. package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +0 -1
  128. package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +0 -1
  129. package/target/surefire-reports/TEST-com.example.jsfs_js_ts.JsfsJsTsApplicationTests.xml +0 -78
  130. package/target/surefire-reports/com.example.jsfs_js_ts.JsfsJsTsApplicationTests.txt +0 -7
@@ -62,18 +62,23 @@ export module oam {
62
62
  DQ.byId(element).delete();
63
63
  };
64
64
 
65
- // noinspection JSUnusedGlobalSymbols
65
+ // noinspection JSUnusedGlobalSymbols,JSUnusedLocalSymbols
66
66
  /**
67
67
  * does special form submit remapping
68
68
  * re-maps the issuing command link into something,
69
- * a decode of the command link on the server can understand
69
+ * the "decode" of the command link on the server can understand
70
70
  *
71
71
  * @param formName
72
72
  * @param linkId
73
73
  * @param target
74
74
  * @param params
75
75
  */
76
- export const submitForm = function (formName: string, linkId: string, target: string, params: { [key: string]: any }): boolean {
76
+ export const submitForm = function (formName: string, linkId: string | null = null, target: string |null = null, params: AssocArr<any> | Tuples<string, any> | null = {} ): boolean {
77
+
78
+
79
+ //handle a possible incoming null, not sure if this is used that way anywhere, but we allow it
80
+ params = (!params) ? {} : params;
81
+
77
82
  let clearFn = 'clearFormHiddenParams_' + formName.replace(/-/g, '\$:').replace(/:/g, '_');
78
83
  window?.[clearFn]?.(formName);
79
84
 
@@ -81,18 +86,23 @@ export module oam {
81
86
  if (window?.myfaces?.core?.config?.autoScroll && (window as any)?.getScrolling) {
82
87
  myfaces.oam.setHiddenInput(formName, 'autoScroll', (window as any)?.getScrolling());
83
88
  }
84
- Stream.ofAssoc(params).each((param: [string, any]) => {
85
- myfaces.oam.setHiddenInput(formName, param[0], param[1]);
86
- });
89
+ let paramsStream: Stream<[string, any]> = Array.isArray(params) ? Stream.of(...params) : Stream.ofAssoc(params);
90
+ paramsStream.each(([key, data]) => myfaces.oam.setHiddenInput(formName, key, data));
87
91
 
88
92
  //we call the namespaced function, to allow decoration, via a direct call we would
89
- myfaces.oam.setHiddenInput(formName, `${formName}:_idcl`, linkId);
93
+ myfaces.oam.setHiddenInput(formName, `${formName}:_idcl`, linkId ?? '');
94
+
90
95
 
91
- DQ.byId(document.forms[formName]).each(form => {
96
+ DQ.byId(document.forms?.[formName] ?? document.getElementById(formName)).each(form => {
92
97
  const ATTR_TARGET = "target";
93
98
  const formElement = form.getAsElem(0).value as HTMLFormElement;
94
- const oldTarget = form.attr(ATTR_TARGET).value;
95
- form.attr(ATTR_TARGET).value = target;
99
+ const oldTarget = (form.getAsElem(0).value as HTMLFormElement).getAttribute("target");
100
+
101
+ if(target != "null" && target) {
102
+ (form.getAsElem(0).value as HTMLFormElement).setAttribute("target", target);
103
+ }
104
+
105
+
96
106
 
97
107
  const result = formElement?.onsubmit?.(null);
98
108
 
@@ -103,9 +113,15 @@ export module oam {
103
113
  } catch (e) {
104
114
  window?.console.error(e);
105
115
  } finally {
106
- form.attr(ATTR_TARGET).value = oldTarget;
107
- Stream.ofAssoc(params).each((param: [string, any]) => {
108
- myfaces.oam.clearHiddenInput(formName, param[0]);
116
+ if(oldTarget == null || oldTarget == "null") {
117
+ (form.getAsElem(0).value as HTMLFormElement).removeAttribute("target");
118
+ } else {
119
+ (form.getAsElem(0).value as HTMLFormElement).setAttribute("target", oldTarget);
120
+ }
121
+
122
+ // noinspection JSUnusedLocalSymbols
123
+ paramsStream.each(([key, data]) => {
124
+ myfaces.oam.clearHiddenInput(formName, key);
109
125
  });
110
126
  myfaces.oam.clearHiddenInput(formName, `${formName}:_idcl`);
111
127
  }
@@ -319,7 +319,7 @@ describe('DOMQuery tests', function () {
319
319
 
320
320
  it('it must have parents', function () {
321
321
  let probe1 = new DomQuery(document).querySelectorAll("div");
322
- let coll: Array<any> = probe1.parents("body").stream.collect(new ArrayCollector());
322
+ let coll: Array<any> = probe1.firstParent("body").stream.collect(new ArrayCollector());
323
323
  expect(coll.length == 1).to.be.true;
324
324
 
325
325
  });
@@ -91,6 +91,70 @@ export module StandardInits {
91
91
 
92
92
 
93
93
 
94
+ /**
95
+ * a page simulating basically a simple faces form
96
+ */
97
+ const HTML_FORM_PREFIXED = `<!DOCTYPE html>
98
+ <html lang="en">
99
+ <head>
100
+ <meta charset="UTF-8">
101
+ <title>Title</title>
102
+ </head>
103
+ <body>
104
+ <form id="form1">
105
+ <input type="text" id="form1:input_1::field" name="form1:input_1" value="form1:input_1_val"></input>
106
+ <input type="hidden" id="form1:jakarta.faces.ViewState" name="jakarta.faces.ViewState" value="blubbblubblubb"></input>
107
+ <input type="button" id="form1:input_2::field" name="form1:input_2" value="form1:input_1_val"></input>
108
+ <input type="text" id="form1:input_3::field" name="form1:input_23 value="form1:input_1_val"></input>
109
+ </form>
110
+ </body>
111
+ </html>`;
112
+
113
+
114
+
115
+ /**
116
+ * a page simulating basically a simple faces form
117
+ */
118
+ export const HTML_PREFIX_EMBEDDED_BODY = `<form id="form1">
119
+ <tobago-in id="page:input" class="tobago-auto-spacing">
120
+ <input type="text" name="page:input" id="page:input::field" class="form-control" value="input_value">
121
+ <tobago-behavior event="change" client-id="page:input" field-id="page:input::field" execute="page:input" render="page:output"></tobago-behavior>
122
+ </tobago-in>
123
+
124
+ <tobago-out id="page:output" class="tobago-auto-spacing">
125
+ <input type="text" name="page:output" id="page:output::field" class="form-control">
126
+ </tobago-out>
127
+ </form>`;
128
+
129
+ const HTML_FORM_PREFIXED_EMBEDDED = `<!DOCTYPE html>
130
+ <html lang="en">
131
+ <head>
132
+ <meta charset="UTF-8">
133
+ <title>Title</title>
134
+ </head>
135
+ <body>
136
+ ${HTML_PREFIX_EMBEDDED_BODY}
137
+ </body>
138
+ </html>`;
139
+
140
+
141
+ const HTML_FORM_NAMESPACED = `<!DOCTYPE html>
142
+ <html lang="en">
143
+ <head>
144
+ <meta charset="UTF-8">
145
+ <title>Title</title>
146
+ </head>
147
+ <body>
148
+ <form id="jd_0:blarg">
149
+ <input type="text" id="jd_0:input_1" name="jd_0:input_1" value="input_1_val"></input>
150
+ <input type="hidden" id="jd_0:jakarta.faces.ViewState" name="jakarta.faces.ViewState" value="blubbblubblubb"></input>
151
+ <input type="button" id="jd_0:input_2" name="input_2" value="input_1_val"></input>
152
+ </form>
153
+ </body>
154
+ </html>`;
155
+
156
+
157
+
94
158
  /**
95
159
  * a page simulating basically a simple faces form
96
160
  */
@@ -277,6 +341,9 @@ export module StandardInits {
277
341
  export function defaultMyFaces(withJsf = true): Promise<() => void> {
278
342
  return init(HTML_FORM_DEFAULT, withJsf);
279
343
  }
344
+ export function defaultMyFacesNamespaces(withJsf = true): Promise<() => void> {
345
+ return init(HTML_FORM_NAMESPACED, withJsf);
346
+ }
280
347
  export function defaultMyFaces23(withJsf = true): Promise<() => void> {
281
348
  return init(HTML_FORM_DEFAULT.replace(/jakarta/gi, "javax"), withJsf, false);
282
349
  }
@@ -302,6 +369,11 @@ export module StandardInits {
302
369
  return <any>init((IS_40) ? PROTOCOL_PAGE : PROTOCOL_PAGE.replace(/jakarta/gi,"javax"), withJsf, IS_40);
303
370
  }
304
371
 
372
+ export function prefixEmbeddedPage(withJsf = true, IS_40 = true): Promise<() => void> {
373
+ return <any>init((IS_40) ? HTML_FORM_PREFIXED_EMBEDDED : HTML_FORM_PREFIXED_EMBEDDED.replace(/jakarta/gi,"javax"), withJsf, IS_40);
374
+ }
375
+
376
+
305
377
  export function defaultSeparatorChar(separatorChar: string, withJsf = true, IS_40 = true): Promise<() => void> {
306
378
  let template = HTML_DEFAULT_SEPARATOR_CHAR(separatorChar, IS_40);
307
379
  return init(template, withJsf);
@@ -194,7 +194,7 @@ export class XmlResponses {
194
194
  <partial-response id="j_id__v_0"><changes><update id="jakarta.faces.Resource">
195
195
  <![CDATA[
196
196
  <script src="../../../xhrCore/fixtures/addedViewHead3.js"></script>
197
- <style type="text/css" rel="../../../xhrCore/fixtures/addedViewHead2.css"></style>
197
+ <link rel="stylesheet" href="../../../xhrCore/fixtures/addedViewHead2.css"></link>
198
198
  <script type="text/javascript">
199
199
  document.getElementById('resource_area_1').innerHTML = 'booga';
200
200
  </script>
@@ -204,6 +204,45 @@ export class XmlResponses {
204
204
  </partial-response>
205
205
  `
206
206
 
207
+ static HEAD_REPLACE = `
208
+ <partial-response id="j_id__v_0"><changes><update id="jakarta.faces.ViewHead">
209
+ <![CDATA[
210
+ <head>
211
+ <script type="text/javascript" src="../../../xhrCore/fixtures/addedViewHead3.js"></script>
212
+ <link rel="stylesheet" href="../../../xhrCore/fixtures/addedViewHead2.css"></link>
213
+ <script type="text/javascript">
214
+ setTimeout(() => document.getElementById('resource_area_1').innerHTML = 'booga', 100);
215
+ </script>
216
+ </head>
217
+ ]]>
218
+ </update>
219
+ </changes>
220
+ </partial-response>
221
+ `
222
+
223
+ static HEAD_REPLACE2 = `
224
+ <partial-response id="j_id__v_0"><changes><update id="jakarta.faces.ViewHead">
225
+ <![CDATA[
226
+ <head>
227
+ <title>After Update</title>
228
+ <meta charset="UTF-8">
229
+ <meta name="description" content="Free Web tutorials">
230
+ <meta name="keywords" content="HTML, CSS, JavaScript, JSF">
231
+ <meta name="viewport" content="width=device-width, initial-scale=0.8">
232
+ <meta name="author" content="Whoever">
233
+ <script type="text/javascript" src="../../../xhrCore/fixtures/addedViewHead3.js"></script>
234
+ <link rel="stylesheet" href="../../../xhrCore/fixtures/addedViewHead2.css"></link>
235
+ <script type="text/javascript">
236
+ setTimeout(() => document.getElementById('resource_area_1').innerHTML = 'booga', 100);
237
+ </script>
238
+ </head>
239
+ ]]>
240
+ </update>
241
+ </changes>
242
+ </partial-response>
243
+ `
244
+
245
+
207
246
  static NONCE_REPLY = `
208
247
  <partial-response><changes><update id='nonce_result'>
209
248
  <![CDATA[<script nonce='test12d3' type='text/javascript' src='http://foobaz/nonce_script.js'></script>]]>
@@ -20,7 +20,7 @@ import {expect} from 'chai';
20
20
  import * as sinon from 'sinon';
21
21
 
22
22
  import {StandardInits} from "../frameworkBase/_ext/shared/StandardInits";
23
- import {P_EXECUTE, P_RENDER} from "../../impl/core/Const";
23
+ import {CTX_PARAM_REQ_PASS_THR, P_EXECUTE, P_RENDER} from "../../impl/core/Const";
24
24
  import defaultMyFaces = StandardInits.defaultMyFaces;
25
25
 
26
26
 
@@ -60,9 +60,9 @@ describe('faces.ajax.request test suite', () => {
60
60
  expect(addRequestToQueue.callCount).to.eq(1);
61
61
  const context = (<Config>addRequestToQueue.args[0][2]);
62
62
 
63
- expect(context.getIf("passThrgh", P_RENDER).value).eq("@all");
63
+ expect(context.getIf(CTX_PARAM_REQ_PASS_THR, P_RENDER).value).eq("@all");
64
64
  //Execute issuing form due to @form and always the issuing element
65
- expect(context.getIf("passThrgh", P_EXECUTE).value).eq("blarg input_2");
65
+ expect(context.getIf(CTX_PARAM_REQ_PASS_THR, P_EXECUTE).value).eq("blarg input_2");
66
66
  } finally {
67
67
  //once done we restore the proper state
68
68
  addRequestToQueue.restore();
@@ -20,7 +20,7 @@ import {expect} from 'chai';
20
20
  import * as sinon from 'sinon';
21
21
 
22
22
  import {StandardInits} from "../frameworkBase/_ext/shared/StandardInits";
23
- import {P_EXECUTE, P_RENDER} from "../../impl/core/Const";
23
+ import {CTX_PARAM_REQ_PASS_THR, P_EXECUTE, P_RENDER} from "../../impl/core/Const";
24
24
  import defaultMyFaces23 = StandardInits.defaultMyFaces23;
25
25
 
26
26
 
@@ -60,9 +60,9 @@ describe('javax.ajax.request test suite', () => {
60
60
  expect(addRequestToQueue.callCount).to.eq(1);
61
61
  const context = (<Config>addRequestToQueue.args[0][2]);
62
62
 
63
- expect(context.getIf("passThrgh", P_RENDER).value).eq("@all");
63
+ expect(context.getIf(CTX_PARAM_REQ_PASS_THR, P_RENDER).value).eq("@all");
64
64
  //Execute issuing form due to @form and always the issuing element
65
- expect(context.getIf("passThrgh", P_EXECUTE).value).eq("blarg input_2");
65
+ expect(context.getIf(CTX_PARAM_REQ_PASS_THR, P_EXECUTE).value).eq("blarg input_2");
66
66
  } finally {
67
67
  //once done we restore the proper state
68
68
  addRequestToQueue.restore();
@@ -108,7 +108,7 @@ describe('tests the addOnEvent and addOnError handling', function () {
108
108
  expect(onErrorCalled1).to.eq(1);
109
109
  expect(onErrorCalled2).to.eq(1);
110
110
  expect(errorTitle).to.eq('Erro21');
111
- expect(errorMessage).to.eq('Error2 Text');
111
+ expect(errorMessage).to.eq('serverError: Error2 Text');
112
112
  });
113
113
 
114
114
  it("must have an id set if there is an emitting element", function () {
@@ -0,0 +1,203 @@
1
+ /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
+ * contributor license agreements. See the NOTICE file distributed with
3
+ * this work for additional information regarding copyright ownership.
4
+ * The ASF licenses this file to you under the Apache License, Version 2.0
5
+ * (the "License"); you may not use this file except in compliance with
6
+ * the License. You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ import {describe, it} from "mocha";
18
+ import * as sinon from "sinon";
19
+ import {expect} from "chai";
20
+ import {StandardInits} from "../frameworkBase/_ext/shared/StandardInits";
21
+ import {DomQuery, DQ$, Stream} from "mona-dish";
22
+ import {
23
+ $nsp,
24
+ COMPLETE,
25
+ P_AJAX,
26
+ P_EXECUTE,
27
+ P_PARTIAL_SOURCE,
28
+ P_RENDER,
29
+ P_VIEWSTATE,
30
+ P_WINDOW_ID,
31
+ SUCCESS
32
+ } from "../../impl/core/Const";
33
+ import defaultMyFaces = StandardInits.defaultMyFaces;
34
+ import STD_XML = StandardInits.STD_XML;
35
+ import defaultMyFacesNamespaces = StandardInits.defaultMyFacesNamespaces;
36
+ import {escape} from "querystring";
37
+
38
+ declare var faces: any;
39
+ declare var Implementation: any;
40
+
41
+ let issueStdReq = function (element) {
42
+ faces.ajax.request(element, null, {
43
+ execute: "input_1",
44
+ render: "@form",
45
+ params: {
46
+ pass1: "pass1",
47
+ pass2: "pass2"
48
+ }
49
+ });
50
+ };
51
+
52
+ describe('Namespacing tests', function () {
53
+ beforeEach(async function () {
54
+
55
+ let waitForResult = defaultMyFacesNamespaces();
56
+
57
+ return waitForResult.then((close) => {
58
+
59
+ this.xhr = sinon.useFakeXMLHttpRequest();
60
+ this.requests = [];
61
+ this.xhr.onCreate = (xhr) => {
62
+ this.requests.push(xhr);
63
+ };
64
+ (<any>global).XMLHttpRequest = this.xhr;
65
+ window.XMLHttpRequest = this.xhr;
66
+
67
+ this.jsfAjaxResponse = sinon.spy((<any>global).faces.ajax, "response");
68
+
69
+ this.closeIt = () => {
70
+ (<any>global).XMLHttpRequest = window.XMLHttpRequest = this.xhr.restore();
71
+ this.jsfAjaxResponse.restore();
72
+ Implementation.reset();
73
+ close();
74
+ }
75
+ });
76
+ });
77
+
78
+ afterEach(function () {
79
+ this.closeIt();
80
+ });
81
+
82
+ it('must send the element identifiers properly encoded', function () {
83
+ let send = sinon.spy(XMLHttpRequest.prototype, "send");
84
+ try {
85
+ global["debug3"] = true;
86
+ faces.ajax.request(document.getElementById("jd_0:input_2"), null, {
87
+ execute: ":input_1",
88
+ render: ":blarg :input_2",
89
+ params: {
90
+ pass1: "pass1",
91
+ pass2: "pass2"
92
+ }
93
+ });
94
+
95
+ expect(send.called).to.be.true;
96
+ let argsVal: any = send.args[0][0];
97
+ let arsArr = argsVal.split("&");
98
+ let resultsMap = {};
99
+ for (let val of arsArr) {
100
+ let keyVal = val.split("=");
101
+ resultsMap[keyVal[0]] = keyVal[1];
102
+ }
103
+
104
+ expect(resultsMap["pass1"]).to.eq("pass1");
105
+ expect(resultsMap["pass2"]).to.eq("pass2");
106
+ expect(!!resultsMap["render"]).to.be.false;
107
+ expect(!!resultsMap["execute"]).to.be.false;
108
+ expect(P_WINDOW_ID in resultsMap).to.be.false;
109
+ expect(P_VIEWSTATE in resultsMap).to.be.true;
110
+ expect(resultsMap[P_PARTIAL_SOURCE]).to.eq(escape("jd_0:input_2"));
111
+ expect(resultsMap[P_AJAX]).to.eq("true");
112
+ expect(resultsMap[P_RENDER]).to.eq(escape("jd_0:blarg jd_0:input_2"));
113
+ expect(resultsMap[P_EXECUTE]).to.eq(escape("jd_0:input_1 jd_0:input_2"));
114
+ } finally {
115
+ send.restore();
116
+ }
117
+ })
118
+
119
+ it('must send the element identifiers properly encoded 2', function () {
120
+ let send = sinon.spy(XMLHttpRequest.prototype, "send");
121
+ try {
122
+ faces.ajax.request(document.getElementById("jd_0:input_2"), null, {
123
+ execute: "jd_0:input_1",
124
+ render: ":blarg jd_0:input_2",
125
+ params: {
126
+ pass1: "pass1",
127
+ pass2: "pass2"
128
+ }
129
+ });
130
+
131
+ expect(send.called).to.be.true;
132
+ let argsVal: any = send.args[0][0];
133
+ let arsArr = argsVal.split("&");
134
+ let resultsMap = {};
135
+ for (let val of arsArr) {
136
+ let keyVal = val.split("=");
137
+ resultsMap[keyVal[0]] = keyVal[1];
138
+ }
139
+
140
+ expect(resultsMap["pass1"]).to.eq("pass1");
141
+ expect(resultsMap["pass2"]).to.eq("pass2");
142
+ expect(!!resultsMap["render"]).to.be.false;
143
+ expect(!!resultsMap["execute"]).to.be.false;
144
+ expect(P_WINDOW_ID in resultsMap).to.be.false;
145
+ expect(P_VIEWSTATE in resultsMap).to.be.true;
146
+ expect(resultsMap[P_PARTIAL_SOURCE]).to.eq(escape("jd_0:input_2"));
147
+ expect(resultsMap[P_AJAX]).to.eq("true");
148
+ expect(resultsMap[P_RENDER]).to.eq(escape("jd_0:blarg jd_0:input_2"));
149
+ expect(resultsMap[P_EXECUTE]).to.eq(escape("jd_0:input_1 jd_0:input_2"));
150
+ } finally {
151
+ send.restore();
152
+ }
153
+ })
154
+
155
+
156
+ it('must get name prefixed viewstate properly', function () {
157
+ let send = sinon.spy(XMLHttpRequest.prototype, "send");
158
+ try {
159
+ DQ$(`[name*='${P_VIEWSTATE}']`).attr("name").value = `jd_0:${P_VIEWSTATE}`;
160
+ DQ$(`[name*='${P_VIEWSTATE}']`).val = "booga";
161
+
162
+ faces.ajax.request(document.getElementById("jd_0:input_2"), null, {
163
+ execute: "jd_0:input_1",
164
+ render: ":blarg jd_0:input_2",
165
+ params: {
166
+ pass1: "pass1",
167
+ pass2: "pass2"
168
+ }
169
+ });
170
+
171
+ expect(send.called).to.be.true;
172
+ let argsVal: any = send.args[0][0];
173
+ let arsArr = argsVal.split("&");
174
+ let resultsMap = {};
175
+ for (let val of arsArr) {
176
+ let keyVal = val.split("=");
177
+ resultsMap[keyVal[0]] = keyVal[1];
178
+ }
179
+
180
+ expect(resultsMap["pass1"]).to.eq("pass1");
181
+ expect(resultsMap["pass2"]).to.eq("pass2");
182
+ expect(!!resultsMap["render"]).to.be.false;
183
+ expect(!!resultsMap["execute"]).to.be.false;
184
+
185
+ let hasWindowdId = Stream.ofAssoc(resultsMap).filter(data => data[0].indexOf(P_WINDOW_ID) != -1).first().isPresent();
186
+ let hasViewState = Stream.ofAssoc(resultsMap).filter(data => data[0].indexOf(P_VIEWSTATE) != -1).first().isPresent();
187
+
188
+ expect(hasWindowdId).to.be.false;
189
+ expect(hasViewState).to.be.true;
190
+
191
+ let viewState = Stream.ofAssoc(resultsMap).filter(data => data[0].indexOf(P_VIEWSTATE) != -1).map(item => item[1]).first().value;
192
+
193
+ expect(viewState).to.eq("booga");
194
+ expect(resultsMap[P_PARTIAL_SOURCE]).to.eq(escape("jd_0:input_2"));
195
+ expect(resultsMap[P_AJAX]).to.eq("true");
196
+ expect(resultsMap[P_RENDER]).to.eq(escape("jd_0:blarg jd_0:input_2"));
197
+ expect(resultsMap[P_EXECUTE]).to.eq(escape("jd_0:input_1 jd_0:input_2"));
198
+ } finally {
199
+ send.restore();
200
+ }
201
+ })
202
+
203
+ });
@@ -0,0 +1,177 @@
1
+ /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
+ * contributor license agreements. See the NOTICE file distributed with
3
+ * this work for additional information regarding copyright ownership.
4
+ * The ASF licenses this file to you under the Apache License, Version 2.0
5
+ * (the "License"); you may not use this file except in compliance with
6
+ * the License. You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ import {describe} from "mocha";
18
+ import * as sinon from "sinon";
19
+ import {Implementation} from "../../impl/AjaxImpl";
20
+ import {StandardInits} from "../frameworkBase/_ext/shared/StandardInits";
21
+ import defaultMyFaces = StandardInits.defaultMyFaces;
22
+ import {DQ, DQ$} from "mona-dish";
23
+ import {expect} from "chai";
24
+
25
+ describe('Tests for the MyFaces specifig oam submit', function () {
26
+
27
+ beforeEach(async function () {
28
+
29
+ let waitForResult = defaultMyFaces();
30
+
31
+ return waitForResult.then((close) => {
32
+
33
+ this.xhr = sinon.useFakeXMLHttpRequest();
34
+ this.requests = [];
35
+ this.xhr.onCreate = (xhr) => {
36
+ this.requests.push(xhr);
37
+ };
38
+ (<any>global).XMLHttpRequest = this.xhr;
39
+ window.XMLHttpRequest = this.xhr;
40
+
41
+ this.jsfAjaxResponse = sinon.spy((<any>global).faces.ajax, "response");
42
+
43
+ this.closeIt = () => {
44
+ (<any>global).XMLHttpRequest = window.XMLHttpRequest = this.xhr.restore();
45
+ this.jsfAjaxResponse.restore();
46
+ Implementation.reset();
47
+ close();
48
+ }
49
+ });
50
+ });
51
+
52
+ afterEach(function () {
53
+ this.closeIt();
54
+ });
55
+
56
+ it(("must handle oam submit correctly, tuples"), (done) => {
57
+
58
+ let options = [["booga1", "value1"], ["booga2", "value2"]];
59
+
60
+ (DQ.byId("blarg")
61
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
62
+ expect(DQ$("#blarg #booga1").inputValue.value).to.eq("value1");
63
+ expect(DQ$("#blarg #booga2").inputValue.value).to.eq("value2");
64
+ done();
65
+ return false;
66
+ };
67
+
68
+ myfaces.oam.submitForm("blarg", null, null, options);
69
+
70
+ });
71
+ it(("must handle oam submit correctly, associative array"), (done) => {
72
+
73
+ let options = {"booga1": "value1", "booga2": "value2"};
74
+
75
+ (DQ.byId("blarg")
76
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
77
+ expect(DQ$("#blarg #booga1").inputValue.value).to.eq("value1");
78
+ expect(DQ$("#blarg #booga2").inputValue.value).to.eq("value2");
79
+ done();
80
+ return false;
81
+ };
82
+
83
+ myfaces.oam.submitForm("blarg", null, null, options);
84
+
85
+ });
86
+
87
+ it(("all hidden inputs must be cleared post submit"), (done) => {
88
+
89
+ let options = {"booga1": "value1", "booga2": "value2"};
90
+
91
+ (DQ.byId("blarg")
92
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
93
+ expect(DQ$("#blarg #booga1").length).to.eq(1);
94
+ expect(DQ$("#blarg #booga2").length).to.eq(1);
95
+ return false;
96
+ };
97
+
98
+ myfaces.oam.submitForm("blarg", null, null, options);
99
+
100
+ expect(DQ$("#blarg #booga1").length).to.eq(0);
101
+ expect(DQ$("#blarg #booga2").length).to.eq(0);
102
+ done();
103
+ });
104
+
105
+ it(("must handle linkid correctly, associative array"), (done) => {
106
+
107
+ let options = {"booga1": "value1", "booga2": "value2"};
108
+
109
+ (DQ.byId("blarg")
110
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
111
+ expect(DQ.byId(`blarg:_idcl`).inputValue.value).to.eq("bla");
112
+ done();
113
+ return false;
114
+ };
115
+
116
+ myfaces.oam.submitForm("blarg", "bla", null, options);
117
+
118
+ });
119
+
120
+ it(("must handle target correctly, associative array"), (done) => {
121
+
122
+ let options = {"booga1": "value1", "booga2": "value2"};
123
+ (DQ.byId("blarg")
124
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
125
+ expect(DQ$(`#blarg`).attr("target").value).to.eq("target1");
126
+ done();
127
+ return false;
128
+ };
129
+ myfaces.oam.submitForm("blarg", "bla", "target1", options);
130
+
131
+ });
132
+
133
+ it(("must handle limited parameters"), (done) => {
134
+
135
+ (DQ.byId("blarg")
136
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
137
+ expect(DQ.byId(`blarg:_idcl`).inputValue.value).to.eq("bla");
138
+ done();
139
+ return false;
140
+ };
141
+ try {
142
+ myfaces.oam.submitForm("blarg", "bla");
143
+ } catch(e) {
144
+ done(e);
145
+ }
146
+
147
+ });
148
+ it(("must handle limited parameters 2"), (done) => {
149
+
150
+ (DQ.byId("blarg")
151
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
152
+ expect(DQ.byId(`blarg:_idcl`).inputValue.value).to.eq("bla");
153
+ done();
154
+ return false;
155
+ };
156
+ try {
157
+ myfaces.oam.submitForm("blarg", "bla", null);
158
+ } catch(e) {
159
+ done(e);
160
+ }
161
+ });
162
+ it(("must handle limited parameters 3"), (done) => {
163
+
164
+ (DQ.byId("blarg")
165
+ .getAsElem(0).value as HTMLFormElement).onsubmit = (evt) => {
166
+ expect(DQ.byId(`blarg:_idcl`).inputValue.value).to.eq("bla");
167
+ done();
168
+ return false;
169
+ };
170
+ try {
171
+ myfaces.oam.submitForm("blarg", "bla", null, null);
172
+ } catch(e) {
173
+ done(e);
174
+ }
175
+ });
176
+
177
+ });