summaryrefslogtreecommitdiff
path: root/javascript/spec/login.js
blob: 13f5679ca3cc14d73c52f166cae6289b984d6402 (plain)
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
describe("Login", function() {

  beforeEach(function() {
    this.srp = new SRP();
    this.xhr = sinon.useFakeXMLHttpRequest();
    var requests = this.requests = [];
    this.xhr.onCreate = function (xhr) {
      requests.push(xhr);
    };
  });

  afterEach(function() {
    this.xhr.restore();
  });

  it("has an identify function", function() {
    expect(typeof this.srp.identify).toBe('function');
  });

  it("logs in successfully (INTEGRATION)", function(){
    var callback = sinon.spy();
    var a = 'af141ae6';
    var B = '887005895b1f5528b4e4dfdce914f73e763b96d3c901d2f41d8b8cd26255a75';
    var salt = '5d3055e0acd3ddcfc15';
    var M = 'be6d7db2186d5f6a2c55788479b6eaf75229a7ca0d9e7dc1f886f1970a0e8065'
    var M2 = '2547cf26318519090f506ab73a68995a2626b1c948e6f603ef9e1b0b78bf0f7b';
    srp = new SRP()
    srp.success = callback;
    var A = srp.calculateAndSetA(a);
    srp.identify();

    expect(this.requests.length).toBe(1);
    expect(this.requests[0].url).toBe("handshake/");
    expect(this.requests[0].requestBody).toBe("I=user&A=" + A);
    specHelper.respondXML(this.requests[0], "<r s='"+salt+"' B='"+B+"' />");
    expect(this.requests.length).toBe(2);
    expect(this.requests[1].url).toBe("authenticate/");
    expect(this.requests[1].requestBody).toBe("M=" + M);
    specHelper.respondXML(this.requests[1], "<M>"+M2+"</M>");

    expect(callback).toHaveBeenCalled();
    expect(window.location.hash).toBe("#logged_in")
  });

  it("logs in successfully with JSON (INTEGRATION)", function(){
    var callback = sinon.spy();
    var a = 'af141ae6';
    var B = '887005895b1f5528b4e4dfdce914f73e763b96d3c901d2f41d8b8cd26255a75';
    var salt = '5d3055e0acd3ddcfc15';
    var M = 'be6d7db2186d5f6a2c55788479b6eaf75229a7ca0d9e7dc1f886f1970a0e8065'
    var M2 = '2547cf26318519090f506ab73a68995a2626b1c948e6f603ef9e1b0b78bf0f7b';
    srp = new SRP()
    srp.success = callback;
    var A = srp.calculateAndSetA(a);
    srp.identify();

    expect(this.requests.length).toBe(1);
    expect(this.requests[0].url).toBe("handshake/");
    expect(this.requests[0].requestBody).toBe("I=user&A=" + A);
    specHelper.respondJSON(this.requests[0], {s: salt, B: B});
    expect(this.requests.length).toBe(2);
    expect(this.requests[1].url).toBe("authenticate/");
    expect(this.requests[1].requestBody).toBe("M=" + M);
    specHelper.respondJSON(this.requests[1], {M: M2});

    expect(callback).toHaveBeenCalled();
    expect(window.location.hash).toBe("#logged_in")
  });


});