summaryrefslogtreecommitdiff
path: root/spec/javascripts/u2f/mock_u2f_device.js
blob: 26ddd8ade618d9ed58a986429fcc3665470e85d3 (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
/* eslint-disable no-unused-expressions, no-return-assign, no-param-reassign */

export default class MockU2FDevice {
  constructor() {
    this.respondToAuthenticateRequest = this.respondToAuthenticateRequest.bind(this);
    this.respondToRegisterRequest = this.respondToRegisterRequest.bind(this);
    window.u2f || (window.u2f = {});
    window.u2f.register = (function(_this) {
      return function(appId, registerRequests, signRequests, callback) {
        return (_this.registerCallback = callback);
      };
    })(this);
    window.u2f.sign = (function(_this) {
      return function(appId, challenges, signRequests, callback) {
        return (_this.authenticateCallback = callback);
      };
    })(this);
  }

  respondToRegisterRequest(params) {
    return this.registerCallback(params);
  }

  respondToAuthenticateRequest(params) {
    return this.authenticateCallback(params);
  }
}