File: formpost_test.js

package info (click to toggle)
aseba-plugin-blockly 20180211%2Bgit-2
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 64,472 kB
  • sloc: xml: 7,976; python: 2,314; sh: 261; lisp: 24; makefile: 10
file content (108 lines) | stat: -rw-r--r-- 3,465 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Copyright 2009 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

goog.provide('goog.ui.FormPostTest');
goog.setTestOnly('goog.ui.FormPostTest');

goog.require('goog.array');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.object');
goog.require('goog.testing.jsunit');
goog.require('goog.ui.FormPost');
goog.require('goog.userAgent.product');
goog.require('goog.userAgent.product.isVersion');

var TARGET = 'target';
var ACTION_URL = 'http://url/';
var formPost;
var parameters;
var submits;
var originalCreateDom = goog.ui.FormPost.prototype.createDom;

function isChrome7or8() {
  // Temporarily disabled in Chrome 7 & 8. See b/3176768
  if (goog.userAgent.product.CHROME &&
      goog.userAgent.product.isVersion('7.0') &&
      !goog.userAgent.product.isVersion('8.0')) {
    return false;
  }

  return true;
}

function setUp() {
  formPost = new goog.ui.FormPost();
  submits = 0;

  // Replace the form's submit method with a fake.
  goog.ui.FormPost.prototype.createDom = function() {
    originalCreateDom.apply(this, arguments);

    this.getElement().submit = function() { submits++ };
  };
  parameters = {'foo': 'bar', 'baz': 1, 'array': [0, 'yes']};
}

function tearDown() {
  formPost.dispose();
  goog.ui.FormPost.prototype.createDom = originalCreateDom;
}

function testPost() {
  formPost.post(parameters, ACTION_URL, TARGET);
  expectUrlAndParameters_(ACTION_URL, TARGET, parameters);
}

function testPostWithDefaults() {
  // Temporarily disabled in Chrome 7. See See b/3176768
  if (isChrome7or8) {
    return;
  }
  formPost = new goog.ui.FormPost();
  formPost.post(parameters);
  expectUrlAndParameters_('', '', parameters);
}

function expectUrlAndParameters_(url, target, parameters) {
  var form = formPost.getElement();
  assertEquals(
      'element must be a form', String(goog.dom.TagName.FORM), form.tagName);
  assertEquals('form must be hidden', 'none', form.style.display);
  assertEquals('form method must be POST', 'POST', form.method.toUpperCase());
  assertEquals('submits', 1, submits);
  assertEquals('action attribute', url, form.action);
  assertEquals('target attribute', target, form.target);
  var inputs =
      goog.dom.getElementsByTagNameAndClass(goog.dom.TagName.INPUT, null, form);
  var formValues = {};
  for (var i = 0, input = inputs[i]; input = inputs[i]; i++) {
    if (goog.isArray(formValues[input.name])) {
      formValues[input.name].push(input.value);
    } else if (input.name in formValues) {
      formValues[input.name] = [formValues[input.name], input.value];
    } else {
      formValues[input.name] = input.value;
    }
  }
  var expected = goog.object.map(parameters, valueToString);
  assertObjectEquals('form values must match', expected, formValues);
}

function valueToString(value) {
  if (goog.isArray(value)) {
    return goog.array.map(value, valueToString);
  }
  return String(value);
}