Add more tests and a TODO.
This commit is contained in:
parent
d3a02ec038
commit
0881a8ae6f
|
@ -231,14 +231,14 @@ describe('MatrixService', function() {
|
||||||
httpBackend.flush();
|
httpBackend.flush();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
xit('should be able to send generic state events without a state key', inject(
|
it('should be able to send generic state events without a state key', inject(
|
||||||
function(matrixService) {
|
function(matrixService) {
|
||||||
matrixService.setConfig({
|
matrixService.setConfig({
|
||||||
access_token: "foobar",
|
access_token: "foobar",
|
||||||
homeserver: "http://example.com"
|
homeserver: "http://example.com"
|
||||||
});
|
});
|
||||||
var roomId = "!fh38hfwfwef:example.com";
|
var roomId = "!fh38hfwfwef:example.com";
|
||||||
var eventType = "com.example.events.test:special@characters";
|
var eventType = "com.example.events.test";
|
||||||
var content = {
|
var content = {
|
||||||
testing: "1 2 3"
|
testing: "1 2 3"
|
||||||
};
|
};
|
||||||
|
@ -255,6 +255,8 @@ describe('MatrixService', function() {
|
||||||
httpBackend.flush();
|
httpBackend.flush();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
// TODO: Skipped since the webclient is purposefully broken so as not to
|
||||||
|
// 500 matrix.org
|
||||||
xit('should be able to send generic state events with a state key', inject(
|
xit('should be able to send generic state events with a state key', inject(
|
||||||
function(matrixService) {
|
function(matrixService) {
|
||||||
matrixService.setConfig({
|
matrixService.setConfig({
|
||||||
|
@ -280,4 +282,55 @@ describe('MatrixService', function() {
|
||||||
.respond({});
|
.respond({});
|
||||||
httpBackend.flush();
|
httpBackend.flush();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
it('should be able to PUT generic events ', inject(
|
||||||
|
function(matrixService) {
|
||||||
|
matrixService.setConfig({
|
||||||
|
access_token: "foobar",
|
||||||
|
homeserver: "http://example.com"
|
||||||
|
});
|
||||||
|
var roomId = "!fh38hfwfwef:example.com";
|
||||||
|
var eventType = "com.example.events.test";
|
||||||
|
var txnId = "42";
|
||||||
|
var content = {
|
||||||
|
testing: "1 2 3"
|
||||||
|
};
|
||||||
|
matrixService.sendEvent(roomId, eventType, txnId, content).then(
|
||||||
|
function(response) {
|
||||||
|
expect(response.data).toEqual({});
|
||||||
|
});
|
||||||
|
|
||||||
|
httpBackend.expectPUT(
|
||||||
|
URL + "/rooms/" + encodeURIComponent(roomId) + "/send/" +
|
||||||
|
encodeURIComponent(eventType) + "/" + encodeURIComponent(txnId)+
|
||||||
|
"?access_token=foobar",
|
||||||
|
content)
|
||||||
|
.respond({});
|
||||||
|
httpBackend.flush();
|
||||||
|
}));
|
||||||
|
|
||||||
|
it('should be able to PUT text messages ', inject(
|
||||||
|
function(matrixService) {
|
||||||
|
matrixService.setConfig({
|
||||||
|
access_token: "foobar",
|
||||||
|
homeserver: "http://example.com"
|
||||||
|
});
|
||||||
|
var roomId = "!fh38hfwfwef:example.com";
|
||||||
|
var body = "ABC 123";
|
||||||
|
matrixService.sendTextMessage(roomId, body).then(
|
||||||
|
function(response) {
|
||||||
|
expect(response.data).toEqual({});
|
||||||
|
});
|
||||||
|
|
||||||
|
httpBackend.expectPUT(
|
||||||
|
new RegExp(URL + "/rooms/" + encodeURIComponent(roomId) +
|
||||||
|
"/send/m.room.message/(.*)" +
|
||||||
|
"?access_token=foobar"),
|
||||||
|
{
|
||||||
|
body: body,
|
||||||
|
msgtype: "m.text"
|
||||||
|
})
|
||||||
|
.respond({});
|
||||||
|
httpBackend.flush();
|
||||||
|
}));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue