import { mochaRun } from '../../../util/helpers.js'; import { INCINERATOR_ADDRESS } from '../../../util/constants.js'; import { ForumTest } from '../forum.test-util.js'; describe('Forum', function tests() { this.timeout(0); const forumTest = new ForumTest(); before(async () => { await forumTest.setup(); }); context('Incinerate reputation', async () => { let forum; let experts; let posts; before(() => { forum = forumTest.forum; experts = forumTest.experts; posts = forumTest.posts; }); it('Post1', async () => { await forumTest.addPost(experts[0], 10); forum.getPost(posts[0]).value.should.equal(10); }); it('Post2 burns reputation from Post1', async () => { await forumTest.addPost(experts[0], 10, [ { postId: posts[0], weight: -1 }, { postId: INCINERATOR_ADDRESS, weight: 1 }, ]); forum.getPost(posts[0]).value.should.equal(0); forum.getPost(posts[1]).value.should.equal(0); }); it('Reputation can not be sourced from the incinerator', async () => { try { await forumTest.addPost(experts[0], 10, [ { postId: INCINERATOR_ADDRESS, weight: -1 }, ]); } catch (e) { e.message.should.match(/Incinerator can only receive positive citations/); } }); }); }); mochaRun();