import { blank, present } from 'helpers/qunit-helpers'; module("model:post-stream"); import createStore from 'helpers/create-store'; const buildStream = function(id, stream) { const store = createStore(); const topic = store.createRecord('topic', {id, chunk_size: 5}); const ps = topic.get('postStream'); if (stream) { ps.set('stream', stream); } return ps; }; const participant = {username: 'eviltrout'}; test('create', function() { const store = createStore(); ok(store.createRecord('postStream'), 'it can be created with no parameters'); }); test('defaults', function() { const postStream = buildStream(1234); blank(postStream.get('posts'), "there are no posts in a stream by default"); ok(!postStream.get('loaded'), "it has never loaded"); present(postStream.get('topic')); }); test('appending posts', function() { const postStream = buildStream(4567, [1, 3, 4]); const store = postStream.store; equal(postStream.get('firstPostId'), 1); equal(postStream.get('lastPostId'), 4, "the last post id is 4"); ok(!postStream.get('hasPosts'), "there are no posts by default"); ok(!postStream.get('firstPostPresent'), "the first post is not loaded"); ok(!postStream.get('loadedAllPosts'), "the last post is not loaded"); equal(postStream.get('posts.length'), 0, "it has no posts initially"); postStream.appendPost(store.createRecord('post', {id: 2, post_number: 2})); ok(!postStream.get('firstPostPresent'), "the first post is still not loaded"); equal(postStream.get('posts.length'), 1, "it has one post in the stream"); postStream.appendPost(store.createRecord('post', {id: 4, post_number: 4})); ok(!postStream.get('firstPostPresent'), "the first post is still loaded"); ok(postStream.get('loadedAllPosts'), "the last post is now loaded"); equal(postStream.get('posts.length'), 2, "it has two posts in the stream"); postStream.appendPost(store.createRecord('post', {id: 4, post_number: 4})); equal(postStream.get('posts.length'), 2, "it will not add the same post with id twice"); const stagedPost = store.createRecord('post', {raw: 'incomplete post'}); postStream.appendPost(stagedPost); equal(postStream.get('posts.length'), 3, "it can handle posts without ids"); postStream.appendPost(stagedPost); equal(postStream.get('posts.length'), 3, "it won't add the same post without an id twice"); // change the stream postStream.set('stream', [1, 2, 4]); ok(!postStream.get('firstPostPresent'), "the first post no longer loaded since the stream changed."); ok(postStream.get('loadedAllPosts'), "the last post is still the last post in the new stream"); }); test('closestPostNumberFor', function() { const postStream = buildStream(1231); const store = postStream.store; blank(postStream.closestPostNumberFor(1), "there is no closest post when nothing is loaded"); postStream.appendPost(store.createRecord('post', {id: 1, post_number: 2})); postStream.appendPost(store.createRecord('post', {id: 2, post_number: 3})); equal(postStream.closestPostNumberFor(2), 2, "If a post is in the stream it returns its post number"); equal(postStream.closestPostNumberFor(3), 3, "If a post is in the stream it returns its post number"); equal(postStream.closestPostNumberFor(10), 3, "it clips to the upper bound of the stream"); equal(postStream.closestPostNumberFor(0), 2, "it clips to the lower bound of the stream"); }); test('closestDaysAgoFor', function() { const postStream = buildStream(1231); postStream.set('timelineLookup', [[1, 10], [3, 8], [5, 1]]); equal(postStream.closestDaysAgoFor(1), 10); equal(postStream.closestDaysAgoFor(2), 10); equal(postStream.closestDaysAgoFor(3), 8); equal(postStream.closestDaysAgoFor(4), 8); equal(postStream.closestDaysAgoFor(5), 1); // Out of bounds equal(postStream.closestDaysAgoFor(-1), 10); equal(postStream.closestDaysAgoFor(0), 10); equal(postStream.closestDaysAgoFor(10), 1); }); test('closestDaysAgoFor - empty', function() { const postStream = buildStream(1231); postStream.set('timelineLookup', []); equal(postStream.closestDaysAgoFor(1), null); }); test('updateFromJson', function() { const postStream = buildStream(1231); postStream.updateFromJson({ posts: [{id: 1}], stream: [1], extra_property: 12 }); equal(postStream.get('posts.length'), 1, 'it loaded the posts'); containsInstance(postStream.get('posts'), Discourse.Post); equal(postStream.get('extra_property'), 12); }); test("removePosts", function() { const postStream = buildStream(10000001, [1,2,3]); const store = postStream.store; const p1 = store.createRecord('post', {id: 1, post_number: 2}), p2 = store.createRecord('post', {id: 2, post_number: 3}), p3 = store.createRecord('post', {id: 3, post_number: 4}); postStream.appendPost(p1); postStream.appendPost(p2); postStream.appendPost(p3); // Removing nothing does nothing postStream.removePosts(); equal(postStream.get('posts.length'), 3); postStream.removePosts([p1, p3]); equal(postStream.get('posts.length'), 1); deepEqual(postStream.get('stream'), [2]); }); test("cancelFilter", function() { const postStream = buildStream(1235); sandbox.stub(postStream, "refresh").returns(new Ember.RSVP.resolve()); postStream.set('summary', true); postStream.cancelFilter(); ok(!postStream.get('summary'), "summary is cancelled"); postStream.toggleParticipant(participant); postStream.cancelFilter(); blank(postStream.get('userFilters'), "cancelling the filters clears the userFilters"); }); test("findPostIdForPostNumber", function() { const postStream = buildStream(1234, [10, 20, 30, 40, 50, 60, 70]); postStream.set('gaps', { before: { 60: [55, 58] } }); equal(postStream.findPostIdForPostNumber(500), null, 'it returns null when the post cannot be found'); equal(postStream.findPostIdForPostNumber(1), 10, 'it finds the postId at the beginning'); equal(postStream.findPostIdForPostNumber(5), 50, 'it finds the postId in the middle'); equal(postStream.findPostIdForPostNumber(8), 60, 'it respects gaps'); }); test("toggleParticipant", function() { const postStream = buildStream(1236); sandbox.stub(postStream, "refresh").returns(new Ember.RSVP.resolve()); equal(postStream.get('userFilters.length'), 0, "by default no participants are toggled"); postStream.toggleParticipant(participant.username); ok(postStream.get('userFilters').contains('eviltrout'), 'eviltrout is in the filters'); postStream.toggleParticipant(participant.username); blank(postStream.get('userFilters'), "toggling the participant again removes them"); }); test("streamFilters", function() { const postStream = buildStream(1237); sandbox.stub(postStream, "refresh").returns(new Ember.RSVP.resolve()); deepEqual(postStream.get('streamFilters'), {}, "there are no postFilters by default"); ok(postStream.get('hasNoFilters'), "there are no filters by default"); postStream.set('summary', true); deepEqual(postStream.get('streamFilters'), {filter: "summary"}, "postFilters contains the summary flag"); ok(!postStream.get('hasNoFilters'), "now there are filters present"); postStream.toggleParticipant(participant.username); deepEqual(postStream.get('streamFilters'), { username_filters: 'eviltrout', show_deleted: true }, "streamFilters contains the username we filtered and show_deleted"); postStream.toggleDeleted(); deepEqual(postStream.get('streamFilters'), { username_filters: 'eviltrout' }, "streamFilters contains the username we filtered without show_deleted"); postStream.cancelFilter(); postStream.toggleDeleted(); deepEqual(postStream.get('streamFilters'), { show_deleted: true }, "streamFilters show_deleted only"); }); test("loading", function() { let postStream = buildStream(1234); ok(!postStream.get('loading'), "we're not loading by default"); postStream.set('loadingAbove', true); ok(postStream.get('loading'), "we're loading if loading above"); postStream = buildStream(1234); postStream.set('loadingBelow', true); ok(postStream.get('loading'), "we're loading if loading below"); postStream = buildStream(1234); postStream.set('loadingFilter', true); ok(postStream.get('loading'), "we're loading if loading a filter"); }); test("nextWindow", function() { const postStream = buildStream(1234, [1,2,3,5,8,9,10,11,13,14,15,16]); blank(postStream.get('nextWindow'), 'With no posts loaded, the window is blank'); postStream.updateFromJson({ posts: [{id: 1}, {id: 2}] }); deepEqual(postStream.get('nextWindow'), [3,5,8,9,10], "If we've loaded the first 2 posts, the window should be the 5 after that"); postStream.updateFromJson({ posts: [{id: 13}] }); deepEqual(postStream.get('nextWindow'), [14, 15, 16], "Boundary check: stop at the end."); postStream.updateFromJson({ posts: [{id: 16}] }); blank(postStream.get('nextWindow'), "Once we've seen everything there's nothing to load."); }); test("previousWindow", function() { const postStream = buildStream(1234, [1,2,3,5,8,9,10,11,13,14,15,16]); blank(postStream.get('previousWindow'), 'With no posts loaded, the window is blank'); postStream.updateFromJson({ posts: [{id: 11}, {id: 13}] }); deepEqual(postStream.get('previousWindow'), [3, 5, 8, 9, 10], "If we've loaded in the middle, it's the previous 5 posts"); postStream.updateFromJson({ posts: [{id: 3}] }); deepEqual(postStream.get('previousWindow'), [1, 2], "Boundary check: stop at the beginning."); postStream.updateFromJson({ posts: [{id: 1}] }); blank(postStream.get('previousWindow'), "Once we've seen everything there's nothing to load."); }); test("storePost", function() { const postStream = buildStream(1234), store = postStream.store, post = store.createRecord('post', {id: 1, post_number: 100, raw: 'initial value'}); blank(postStream.get('topic.highest_post_number'), "it has no highest post number yet"); let stored = postStream.storePost(post); equal(post, stored, "it returns the post it stored"); equal(post.get('topic'), postStream.get('topic'), "it creates the topic reference properly"); equal(postStream.get('topic.highest_post_number'), 100, "it set the highest post number"); const dupePost = store.createRecord('post', {id: 1, post_number: 100, raw: 'updated value'}); const storedDupe = postStream.storePost(dupePost); equal(storedDupe, post, "it returns the previously stored post instead to avoid dupes"); equal(storedDupe.get('raw'), 'updated value', 'it updates the previously stored post'); const postWithoutId = store.createRecord('post', {raw: 'hello world'}); stored = postStream.storePost(postWithoutId); equal(stored, postWithoutId, "it returns the same post back"); }); test("identity map", function() { const postStream = buildStream(1234); const store = postStream.store; const p1 = postStream.appendPost(store.createRecord('post', {id: 1, post_number: 1})); const p3 = postStream.appendPost(store.createRecord('post', {id: 3, post_number: 4})); equal(postStream.findLoadedPost(1), p1, "it can return cached posts by id"); blank(postStream.findLoadedPost(4), "it can't find uncached posts"); // Find posts by ids uses the identity map postStream.findPostsByIds([1, 2, 3]).then(result => { equal(result.length, 3); equal(result.objectAt(0), p1); equal(result.objectAt(1).get('post_number'), 2); equal(result.objectAt(2), p3); }); }); test("loadIntoIdentityMap with no data", () => { buildStream(1234).loadIntoIdentityMap([]).then(result => { equal(result.length, 0, 'requesting no posts produces no posts'); }); }); test("loadIntoIdentityMap with post ids", function() { const postStream = buildStream(1234); postStream.loadIntoIdentityMap([10]).then(function() { present(postStream.findLoadedPost(10), "it adds the returned post to the store"); }); }); test("staging and undoing a new post", function() { const postStream = buildStream(10101, [1]); const store = postStream.store; const original = store.createRecord('post', {id: 1, post_number: 1, topic_id: 10101}); postStream.appendPost(original); ok(postStream.get('lastAppended'), original, "the original post is lastAppended"); const user = Discourse.User.create({username: 'eviltrout', name: 'eviltrout', id: 321}); const stagedPost = store.createRecord('post', { raw: 'hello world this is my new post', topic_id: 10101 }); const topic = postStream.get('topic'); topic.setProperties({ posts_count: 1, highest_post_number: 1 }); // Stage the new post in the stream const result = postStream.stagePost(stagedPost, user); equal(result, "staged", "it returns staged"); equal(topic.get('highest_post_number'), 2, "it updates the highest_post_number"); ok(postStream.get('loading'), "it is loading while the post is being staged"); ok(postStream.get('lastAppended'), original, "it doesn't consider staged posts as the lastAppended"); equal(topic.get('posts_count'), 2, "it increases the post count"); present(topic.get('last_posted_at'), "it updates last_posted_at"); equal(topic.get('details.last_poster'), user, "it changes the last poster"); equal(stagedPost.get('topic'), topic, "it assigns the topic reference"); equal(stagedPost.get('post_number'), 2, "it is assigned the probable post_number"); present(stagedPost.get('created_at'), "it is assigned a created date"); ok(postStream.get('posts').contains(stagedPost), "the post is added to the stream"); equal(stagedPost.get('id'), -1, "the post has a magical -1 id"); // Undoing a created post (there was an error) postStream.undoPost(stagedPost); ok(!postStream.get('loading'), "it is no longer loading"); equal(topic.get('highest_post_number'), 1, "it reverts the highest_post_number"); equal(topic.get('posts_count'), 1, "it reverts the post count"); equal(postStream.get('filteredPostsCount'), 1, "it retains the filteredPostsCount"); ok(!postStream.get('posts').contains(stagedPost), "the post is removed from the stream"); ok(postStream.get('lastAppended'), original, "it doesn't consider undid post lastAppended"); }); test("staging and committing a post", function() { const postStream = buildStream(10101, [1]); const store = postStream.store; const original = store.createRecord('post', {id: 1, post_number: 1, topic_id: 10101}); postStream.appendPost(original); ok(postStream.get('lastAppended'), original, "the original post is lastAppended"); const user = Discourse.User.create({username: 'eviltrout', name: 'eviltrout', id: 321}); const stagedPost = store.createRecord('post', { raw: 'hello world this is my new post', topic_id: 10101 }); const topic = postStream.get('topic'); topic.set('posts_count', 1); // Stage the new post in the stream let result = postStream.stagePost(stagedPost, user); equal(result, "staged", "it returns staged"); ok(postStream.get('loading'), "it is loading while the post is being staged"); stagedPost.setProperties({ id: 1234, raw: "different raw value" }); result = postStream.stagePost(stagedPost, user); equal(result, "alreadyStaging", "you can't stage a post while it is currently staging"); ok(postStream.get('lastAppended'), original, "staging a post doesn't change the lastAppended"); postStream.commitPost(stagedPost); ok(postStream.get('posts').contains(stagedPost), "the post is still in the stream"); ok(!postStream.get('loading'), "it is no longer loading"); equal(postStream.get('filteredPostsCount'), 2, "it increases the filteredPostsCount"); const found = postStream.findLoadedPost(stagedPost.get('id')); present(found, "the post is in the identity map"); ok(postStream.indexOf(stagedPost) > -1, "the post is in the stream"); equal(found.get('raw'), 'different raw value', 'it also updated the value in the stream'); ok(postStream.get('lastAppended'), found, "comitting a post changes lastAppended"); }); test("loadedAllPosts when the id changes", function() { // This can happen in a race condition between staging a post and it coming through on the // message bus. If the id of a post changes we should reconsider the loadedAllPosts property. const postStream = buildStream(10101, [1, 2]); const store = postStream.store; const postWithoutId = store.createRecord('post', { raw: 'hello world this is my new post' }); postStream.appendPost(store.createRecord('post', {id: 1, post_number: 1})); postStream.appendPost(postWithoutId); ok(!postStream.get('loadedAllPosts'), 'the last post is not loaded'); postWithoutId.set('id', 2); ok(postStream.get('loadedAllPosts'), 'the last post is loaded now that the post has an id'); }); test("comitting and triggerNewPostInStream race condition", function() { const postStream = buildStream(4964); const store = postStream.store; postStream.appendPost(store.createRecord('post', {id: 1, post_number: 1})); const user = Discourse.User.create({username: 'eviltrout', name: 'eviltrout', id: 321}); const stagedPost = store.createRecord('post', { raw: 'hello world this is my new post' }); postStream.stagePost(stagedPost, user); equal(postStream.get('filteredPostsCount'), 0, "it has no filteredPostsCount yet"); stagedPost.set('id', 123); sandbox.stub(postStream, 'appendMore'); postStream.triggerNewPostInStream(123); equal(postStream.get('filteredPostsCount'), 1, "it added the post"); postStream.commitPost(stagedPost); equal(postStream.get('filteredPostsCount'), 1, "it does not add the same post twice"); }); test("postsWithPlaceholders", () => { const postStream = buildStream(4964, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); const postsWithPlaceholders = postStream.get('postsWithPlaceholders'); const store = postStream.store; const testProxy = Ember.ArrayProxy.create({ content: postsWithPlaceholders }); const p1 = store.createRecord('post', {id: 1, post_number: 1}); const p2 = store.createRecord('post', {id: 2, post_number: 2}); const p3 = store.createRecord('post', {id: 3, post_number: 3}); const p4 = store.createRecord('post', {id: 4, post_number: 4}); postStream.appendPost(p1); postStream.appendPost(p2); postStream.appendPost(p3); // Test enumerable and array access equal(postsWithPlaceholders.get('length'), 3); equal(testProxy.get('length'), 3); equal(postsWithPlaceholders.nextObject(0), p1); equal(postsWithPlaceholders.objectAt(0), p1); equal(postsWithPlaceholders.nextObject(1, p1), p2); equal(postsWithPlaceholders.objectAt(1), p2); equal(postsWithPlaceholders.nextObject(2, p2), p3); equal(postsWithPlaceholders.objectAt(2), p3); const promise = postStream.appendMore(); equal(postsWithPlaceholders.get('length'), 8, 'we immediately have a larger placeholder window'); equal(testProxy.get('length'), 8); ok(!!postsWithPlaceholders.nextObject(3, p3)); ok(!!postsWithPlaceholders.objectAt(4)); ok(postsWithPlaceholders.objectAt(3) !== p4); ok(testProxy.objectAt(3) !== p4); return promise.then(() => { equal(postsWithPlaceholders.objectAt(3), p4); equal(postsWithPlaceholders.get('length'), 8, 'have a larger placeholder window when loaded'); equal(testProxy.get('length'), 8); equal(testProxy.objectAt(3), p4); }); });