heyujie
2021-05-20 6ebdefb4a5b2be82a8c452c0bb4624f3d85a17b7
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
'use strict';
 
var aFrom       = require('es5-ext/array/from')
  , getIterator = require('es6-iterator/get')
  , toArray     = require('es5-ext/array/to-array');
 
module.exports = function (T, a) {
    var arr = ['raz', 'dwa', 'trzy'], set = new T(arr), x = 'other', y = 'other2'
      , i = 0, result = [];
 
    a(set instanceof T, true, "Set");
    a(set.size, 3, "Size");
    a(set.has('raz'), true, "Has: true");
    a(set.has(x), false, "Has: false");
    a(set.add(x), set, "Add: return");
    a(set.has(x), true, "Add");
    a(set.size, 4, "Add: Size");
    a(set.delete('else'), false, "Delete: false");
    a(set.get('raz'), 'raz', "Get");
 
    arr.push(x);
    set.forEach(function () {
        result.push(aFrom(arguments));
        a(this, y, "ForEach: Context: #" + i);
    }, y);
 
    a.deep(result.sort(function (a, b) {
        return a[0].localeCompare(b[0]);
    }), arr.sort().map(function (val) { return [val, val, set]; }));
 
    a.deep(toArray(set.entries()).sort(), [['dwa', 'dwa'], ['trzy', 'trzy'],
        [x, x], ['raz', 'raz']].sort(), "Entries");
    a.deep(toArray(set.keys()).sort(), ['dwa', 'trzy', x, 'raz'].sort(),
        "Keys");
    a.deep(toArray(set.values()).sort(), ['dwa', 'trzy', x, 'raz'].sort(),
        "Values");
    a.deep(toArray(getIterator(set)).sort(), ['dwa', 'trzy', x, 'raz'].sort(),
        "Iterator");
 
    set.clear();
    a(set.size, 0, "Clear: size");
    a(set.has('trzy'), false, "Clear: has");
    a.deep(toArray(set.values()), [], "Clear: Values");
 
    a.h1("Empty initialization");
    set = new T();
    set.add('foo');
    a(set.size, 1);
    a(set.has('foo'), true);
};