| /** |
| * @license |
| * Copyright (C) 2021 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| import '../../test/common-test-setup-karma'; |
| import {createDraft} from '../../test/test-data-generators'; |
| import {UrlEncodedCommentId} from '../../types/common'; |
| import './comments-model'; |
| import {CommentsModel} from './comments-model'; |
| import {deleteDraft} from './comments-model'; |
| import {Subscription} from 'rxjs'; |
| import '../../test/common-test-setup-karma'; |
| import { |
| createComment, |
| createParsedChange, |
| TEST_NUMERIC_CHANGE_ID, |
| } from '../../test/test-data-generators'; |
| import {stubRestApi, waitUntil, waitUntilCalled} from '../../test/test-utils'; |
| import {getAppContext} from '../../services/app-context'; |
| import {GerritView} from '../../services/router/router-model'; |
| import {PathToCommentsInfoMap} from '../../types/common'; |
| import {changeModelToken} from '../change/change-model'; |
| |
| suite('comments model tests', () => { |
| test('updateStateDeleteDraft', () => { |
| const draft = createDraft(); |
| draft.id = '1' as UrlEncodedCommentId; |
| const state = { |
| comments: {}, |
| robotComments: {}, |
| drafts: { |
| [draft.path!]: [draft], |
| }, |
| portedComments: {}, |
| portedDrafts: {}, |
| discardedDrafts: [], |
| }; |
| const output = deleteDraft(state, draft); |
| assert.deepEqual(output, { |
| comments: {}, |
| robotComments: {}, |
| drafts: { |
| 'abc.txt': [], |
| }, |
| portedComments: {}, |
| portedDrafts: {}, |
| discardedDrafts: [{...draft}], |
| }); |
| }); |
| }); |
| |
| suite('change service tests', () => { |
| let subscriptions: Subscription[] = []; |
| |
| teardown(() => { |
| for (const s of subscriptions) { |
| s.unsubscribe(); |
| } |
| subscriptions = []; |
| }); |
| |
| test('loads comments', async () => { |
| const model = new CommentsModel( |
| getAppContext().routerModel, |
| testResolver(changeModelToken), |
| getAppContext().restApiService, |
| getAppContext().reportingService |
| ); |
| const diffCommentsSpy = stubRestApi('getDiffComments').returns( |
| Promise.resolve({'foo.c': [createComment()]}) |
| ); |
| const diffRobotCommentsSpy = stubRestApi('getDiffRobotComments').returns( |
| Promise.resolve({}) |
| ); |
| const diffDraftsSpy = stubRestApi('getDiffDrafts').returns( |
| Promise.resolve({}) |
| ); |
| const portedCommentsSpy = stubRestApi('getPortedComments').returns( |
| Promise.resolve({'foo.c': [createComment()]}) |
| ); |
| const portedDraftsSpy = stubRestApi('getPortedDrafts').returns( |
| Promise.resolve({}) |
| ); |
| let comments: PathToCommentsInfoMap = {}; |
| subscriptions.push(model.comments$.subscribe(c => (comments = c ?? {}))); |
| let portedComments: PathToCommentsInfoMap = {}; |
| subscriptions.push( |
| model.portedComments$.subscribe(c => (portedComments = c ?? {})) |
| ); |
| |
| model.routerModel.updateState({ |
| view: GerritView.CHANGE, |
| changeNum: TEST_NUMERIC_CHANGE_ID, |
| }); |
| model.changeModel.updateStateChange(createParsedChange()); |
| |
| await waitUntilCalled(diffCommentsSpy, 'diffCommentsSpy'); |
| await waitUntilCalled(diffRobotCommentsSpy, 'diffRobotCommentsSpy'); |
| await waitUntilCalled(diffDraftsSpy, 'diffDraftsSpy'); |
| await waitUntilCalled(portedCommentsSpy, 'portedCommentsSpy'); |
| await waitUntilCalled(portedDraftsSpy, 'portedDraftsSpy'); |
| await waitUntil( |
| () => Object.keys(comments).length > 0, |
| 'comment in model not set' |
| ); |
| await waitUntil( |
| () => Object.keys(portedComments).length > 0, |
| 'ported comment in model not set' |
| ); |
| |
| assert.equal(comments['foo.c'].length, 1); |
| assert.equal(comments['foo.c'][0].id, '12345'); |
| assert.equal(portedComments['foo.c'].length, 1); |
| assert.equal(portedComments['foo.c'][0].id, '12345'); |
| }); |
| }); |