diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-18 17:59:04 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-09-18 17:59:15 +0100 |
commit | 6a6a71889868b32ca4a800472bb2d37fb8155caa (patch) | |
tree | 544e5991c66ce529abc9bcb54ec6a522fd1ec6d7 /webclient/test/unit | |
parent | Oops. Removed dev logs (diff) | |
download | synapse-6a6a71889868b32ca4a800472bb2d37fb8155caa.tar.xz |
Added test directory, karma conf, and angular-mocks. Expect it to work? Pah, not yet.
Diffstat (limited to 'webclient/test/unit')
-rw-r--r-- | webclient/test/unit/user-controller.spec.js | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/webclient/test/unit/user-controller.spec.js b/webclient/test/unit/user-controller.spec.js new file mode 100644 index 0000000000..217559114b --- /dev/null +++ b/webclient/test/unit/user-controller.spec.js @@ -0,0 +1,59 @@ +describe("UserCtrl", function() { + var scope, ctrl, matrixService, routeParams, $q, $timeout; + var userId = "@foo:bar"; + var displayName = "Foo"; + var avatarUrl = "avatar.url"; + + beforeEach(module('matrixWebClient')); + + beforeEach(function() { + + inject(function($rootScope, $injector, $controller, _$q_, _$timeout_) { + $q = _$q_; + $timeout = _$timeout_; + + matrixService = { + config: function() { + return { + user_id: userId + }; + }, + + getDisplayName: function(uid) { + var d = $q.defer(); + // FIXME: everything goes into fire here + d.resolve({ + data: { + displayname: displayName + } + }); + return d; + }, + + getProfilePictureUrl: function(uid) { + var d = $q.defer(); + d.resolve({ + data: { + avatar_url: avatarUrl + } + }); + return d; + } + }; + scope = $rootScope.$new(); + routeParams = { + user_matrix_id: userId + }; + ctrl = $controller('UserController', { + '$scope': scope, + '$routeParams': routeParams, + 'matrixService': matrixService + }); + console.log("end inject"); + }); + }); + + it('should display your user id', function() { + expect(scope.user_id).toEqual(userId); + }); +}); |