store displayName on RestSession to use it in tests

pull/21833/head
Bruno Windels 2018-09-12 14:51:00 +02:00
parent 249cf4f87e
commit 4057ec8a6a
1 changed files with 12 additions and 6 deletions

View File

@ -20,19 +20,25 @@ const {approveConsent} = require('./consent');
module.exports = class RestSession {
constructor(credentials) {
this.credentials = credentials;
this._credentials = credentials;
this._displayName = null;
}
userId() {
return this.credentials.userId;
return this._credentials.userId;
}
userName() {
return this.credentials.userId.split(":")[0].substr(1);
return this._credentials.userId.split(":")[0].substr(1);
}
displayName() {
return this._displayName;
}
async setDisplayName(displayName) {
await this._put(`/profile/${this.credentials.userId}/displayname`, {
this._displayName = displayName;
await this._put(`/profile/${this._credentials.userId}/displayname`, {
displayname: displayName
});
}
@ -76,10 +82,10 @@ module.exports = class RestSession {
async _request(method, csApiPath, body) {
try {
const responseBody = await request({
url: `${this.credentials.hsUrl}/_matrix/client/r0${csApiPath}`,
url: `${this._credentials.hsUrl}/_matrix/client/r0${csApiPath}`,
method,
headers: {
"Authorization": `Bearer ${this.credentials.accessToken}`
"Authorization": `Bearer ${this._credentials.accessToken}`
},
json: true,
body