| 
									
										
										
										
											2015-01-03 20:07:09 -05:00
										 |  |  | 'use strict'; | 
					
						
							| 
									
										
										
										
											2017-02-17 21:55:19 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 00:42:34 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | const async = require('async'); | 
					
						
							|  |  |  | const assert = require('assert'); | 
					
						
							|  |  |  | const nconf = require('nconf'); | 
					
						
							|  |  |  | const request = require('request'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const db = require('./mocks/databasemock'); | 
					
						
							|  |  |  | const Categories = require('../src/categories'); | 
					
						
							|  |  |  | const Topics = require('../src/topics'); | 
					
						
							|  |  |  | const User = require('../src/user'); | 
					
						
							|  |  |  | const groups = require('../src/groups'); | 
					
						
							|  |  |  | const privileges = require('../src/privileges'); | 
					
						
							| 
									
										
										
										
											2013-10-12 11:06:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | describe('Categories', () => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 	let categoryObj; | 
					
						
							|  |  |  | 	let posterUid; | 
					
						
							|  |  |  | 	let adminUid; | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	before((done) => { | 
					
						
							| 
									
										
										
										
											2017-05-26 17:16:59 -06:00
										 |  |  | 		async.series({ | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			posterUid: function (next) { | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 				User.create({ username: 'poster' }, next); | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 			adminUid: function (next) { | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 				User.create({ username: 'admin' }, next); | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		}, (err, results) => { | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			assert.ifError(err); | 
					
						
							|  |  |  | 			posterUid = results.posterUid; | 
					
						
							|  |  |  | 			adminUid = results.adminUid; | 
					
						
							|  |  |  | 			groups.join('administrators', adminUid, done); | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2013-10-12 11:06:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-06 13:21:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	it('should create a new category', (done) => { | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 		Categories.create({ | 
					
						
							| 
									
										
										
										
											2018-11-30 14:25:45 -05:00
										 |  |  | 			name: 'Test Category & NodeBB', | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 			description: 'Test category created by testing script', | 
					
						
							|  |  |  | 			icon: 'fa-check', | 
					
						
							|  |  |  | 			blockclass: 'category-blue', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 			order: '5', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		}, (err, category) => { | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 			assert.ifError(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			categoryObj = category; | 
					
						
							|  |  |  | 			done(); | 
					
						
							| 
									
										
										
										
											2013-10-12 11:06:43 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	it('should retrieve a newly created category by its ID', (done) => { | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 		Categories.getCategoryById({ | 
					
						
							|  |  |  | 			cid: categoryObj.cid, | 
					
						
							|  |  |  | 			start: 0, | 
					
						
							|  |  |  | 			stop: -1, | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 			uid: 0, | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		}, (err, categoryData) => { | 
					
						
							| 
									
										
										
										
											2018-12-01 17:15:38 -05:00
										 |  |  | 			assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			assert(categoryData); | 
					
						
							| 
									
										
										
										
											2018-11-30 14:25:45 -05:00
										 |  |  | 			assert.equal('Test Category & NodeBB', categoryData.name); | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 			assert.equal(categoryObj.description, categoryData.description); | 
					
						
							| 
									
										
										
										
											2018-10-20 17:55:13 -04:00
										 |  |  | 			assert.strictEqual(categoryObj.disabled, 0); | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 			done(); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2013-10-12 11:06:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	it('should return null if category does not exist', (done) => { | 
					
						
							| 
									
										
										
										
											2018-12-01 17:15:38 -05:00
										 |  |  | 		Categories.getCategoryById({ | 
					
						
							|  |  |  | 			cid: 123123123, | 
					
						
							|  |  |  | 			start: 0, | 
					
						
							|  |  |  | 			stop: -1, | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		}, (err, categoryData) => { | 
					
						
							| 
									
										
										
										
											2018-12-01 17:15:38 -05:00
										 |  |  | 			assert.ifError(err); | 
					
						
							|  |  |  | 			assert.strictEqual(categoryData, null); | 
					
						
							|  |  |  | 			done(); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	it('should get all categories', (done) => { | 
					
						
							|  |  |  | 		Categories.getAllCategories(1, (err, data) => { | 
					
						
							| 
									
										
										
										
											2018-12-05 11:22:44 -05:00
										 |  |  | 			assert.ifError(err); | 
					
						
							|  |  |  | 			assert(Array.isArray(data)); | 
					
						
							|  |  |  | 			assert.equal(data[0].cid, categoryObj.cid); | 
					
						
							|  |  |  | 			done(); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	it('should load a category route', (done) => { | 
					
						
							|  |  |  | 		request(`${nconf.get('url')}/api/category/${categoryObj.cid}/test-category`, { json: true }, (err, response, body) => { | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 			assert.ifError(err); | 
					
						
							|  |  |  | 			assert.equal(response.statusCode, 200); | 
					
						
							| 
									
										
										
										
											2018-11-30 14:25:45 -05:00
										 |  |  | 			assert.equal(body.name, 'Test Category & NodeBB'); | 
					
						
							| 
									
										
										
										
											2016-10-18 00:14:28 +03:00
										 |  |  | 			assert(body); | 
					
						
							|  |  |  | 			done(); | 
					
						
							| 
									
										
										
										
											2013-10-12 11:06:43 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('Categories.getRecentTopicReplies', () => { | 
					
						
							|  |  |  | 		it('should not throw', (done) => { | 
					
						
							| 
									
										
										
										
											2016-08-26 19:33:16 +03:00
										 |  |  | 			Categories.getCategoryById({ | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							| 
									
										
										
										
											2021-02-03 23:59:08 -07:00
										 |  |  | 				set: `cid:${categoryObj.cid}:tids`, | 
					
						
							| 
									
										
										
										
											2016-08-26 19:33:16 +03:00
										 |  |  | 				reverse: true, | 
					
						
							|  |  |  | 				start: 0, | 
					
						
							|  |  |  | 				stop: -1, | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				uid: 0, | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, categoryData) => { | 
					
						
							| 
									
										
										
										
											2016-08-26 19:33:16 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				Categories.getRecentTopicReplies(categoryData, 0, {}, (err) => { | 
					
						
							| 
									
										
										
										
											2016-08-26 19:33:16 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('.getCategoryTopics', () => { | 
					
						
							|  |  |  | 		it('should return a list of topics', (done) => { | 
					
						
							| 
									
										
										
										
											2014-11-06 18:14:07 -05:00
										 |  |  | 			Categories.getCategoryTopics({ | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							|  |  |  | 				start: 0, | 
					
						
							|  |  |  | 				stop: 10, | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				uid: 0, | 
					
						
							| 
									
										
										
										
											2019-07-03 12:48:26 -04:00
										 |  |  | 				sort: 'oldest_to_newest', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, result) => { | 
					
						
							| 
									
										
										
										
											2016-08-16 19:46:59 +02:00
										 |  |  | 				assert.equal(err, null); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 17:17:34 -05:00
										 |  |  | 				assert(Array.isArray(result.topics)); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				assert(result.topics.every(topic => topic instanceof Object)); | 
					
						
							| 
									
										
										
										
											2013-10-12 11:06:43 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2014-11-06 18:14:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should return a list of topics by a specific user', (done) => { | 
					
						
							| 
									
										
										
										
											2014-11-06 18:14:07 -05:00
										 |  |  | 			Categories.getCategoryTopics({ | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							|  |  |  | 				start: 0, | 
					
						
							|  |  |  | 				stop: 10, | 
					
						
							|  |  |  | 				uid: 0, | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				targetUid: 1, | 
					
						
							| 
									
										
										
										
											2019-07-03 12:48:26 -04:00
										 |  |  | 				sort: 'oldest_to_newest', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, result) => { | 
					
						
							| 
									
										
										
										
											2016-08-16 19:46:59 +02:00
										 |  |  | 				assert.equal(err, null); | 
					
						
							| 
									
										
										
										
											2014-11-06 18:14:07 -05:00
										 |  |  | 				assert(Array.isArray(result.topics)); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				assert(result.topics.every(topic => topic instanceof Object && topic.uid === '1')); | 
					
						
							| 
									
										
										
										
											2014-11-06 18:14:07 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-10-12 11:06:43 -04:00
										 |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('Categories.moveRecentReplies', () => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 		let moveCid; | 
					
						
							|  |  |  | 		let moveTid; | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		before((done) => { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 			async.parallel({ | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 				category: function (next) { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 					Categories.create({ | 
					
						
							|  |  |  | 						name: 'Test Category 2', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 						description: 'Test category created by testing script', | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 					}, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2016-10-13 11:43:39 +02:00
										 |  |  | 				topic: function (next) { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 					Topics.post({ | 
					
						
							|  |  |  | 						uid: posterUid, | 
					
						
							|  |  |  | 						cid: categoryObj.cid, | 
					
						
							|  |  |  | 						title: 'Test Topic Title', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 						content: 'The content of test topic', | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 					}, next); | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, results) => { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 				if (err) { | 
					
						
							|  |  |  | 					return done(err); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				moveCid = results.category.cid; | 
					
						
							|  |  |  | 				moveTid = results.topic.topicData.tid; | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				Topics.reply({ uid: posterUid, content: 'test post', tid: moveTid }, (err) => { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 					done(err); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should move posts from one category to another', (done) => { | 
					
						
							|  |  |  | 			Categories.moveRecentReplies(moveTid, categoryObj.cid, moveCid, (err) => { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				db.getSortedSetRange(`cid:${categoryObj.cid}:pids`, 0, -1, (err, pids) => { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(pids.length, 0); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 					db.getSortedSetRange(`cid:${moveCid}:pids`, 0, -1, (err, pids) => { | 
					
						
							| 
									
										
										
										
											2016-10-11 16:06:42 +03:00
										 |  |  | 						assert.ifError(err); | 
					
						
							|  |  |  | 						assert.equal(pids.length, 2); | 
					
						
							|  |  |  | 						done(); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('socket methods', () => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 		const socketCategories = require('../src/socket.io/categories'); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-13 22:54:32 -05:00
										 |  |  | 		before(async () => { | 
					
						
							|  |  |  | 			await Topics.post({ | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				uid: posterUid, | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							|  |  |  | 				title: 'Test Topic Title', | 
					
						
							|  |  |  | 				content: 'The content of test topic', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				tags: ['nodebb'], | 
					
						
							| 
									
										
										
										
											2021-03-13 22:54:32 -05:00
										 |  |  | 			}); | 
					
						
							|  |  |  | 			const data = await Topics.post({ | 
					
						
							|  |  |  | 				uid: posterUid, | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							|  |  |  | 				title: 'will delete', | 
					
						
							|  |  |  | 				content: 'The content of deleted topic', | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 			await Topics.delete(data.topicData.tid, adminUid); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get recent replies in category', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getRecentReplies({ uid: posterUid }, categoryObj.cid, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(Array.isArray(data)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get categories', (done) => { | 
					
						
							|  |  |  | 			socketCategories.get({ uid: posterUid }, {}, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(Array.isArray(data)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get watched categories', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getWatchedCategories({ uid: posterUid }, {}, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(Array.isArray(data)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should load more topics', (done) => { | 
					
						
							| 
									
										
										
										
											2017-06-06 16:40:32 -04:00
										 |  |  | 			socketCategories.loadMore({ uid: posterUid }, { | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							|  |  |  | 				after: 0, | 
					
						
							|  |  |  | 				query: { | 
					
						
							|  |  |  | 					author: 'poster', | 
					
						
							|  |  |  | 					tag: 'nodebb', | 
					
						
							|  |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(Array.isArray(data.topics)); | 
					
						
							|  |  |  | 				assert.equal(data.topics[0].user.username, 'poster'); | 
					
						
							|  |  |  | 				assert.equal(data.topics[0].tags[0].value, 'nodebb'); | 
					
						
							|  |  |  | 				assert.equal(data.topics[0].category.cid, categoryObj.cid); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-13 22:54:32 -05:00
										 |  |  | 		it('should not show deleted topic titles', async () => { | 
					
						
							|  |  |  | 			const data = await socketCategories.loadMore({ uid: 0 }, { | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							|  |  |  | 				after: 0, | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			assert.deepStrictEqual( | 
					
						
							|  |  |  | 				data.topics.map(t => t.title), | 
					
						
							|  |  |  | 				['[[topic:topic_is_deleted]]', 'Test Topic Title', 'Test Topic Title'], | 
					
						
							|  |  |  | 			); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should load topic count', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getTopicCount({ uid: posterUid }, categoryObj.cid, (err, topicCount) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-03-13 22:54:32 -05:00
										 |  |  | 				assert.strictEqual(topicCount, 3); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should load category by privilege', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getCategoriesByPrivilege({ uid: posterUid }, 'find', (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(Array.isArray(data)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get move categories', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getMoveCategories({ uid: posterUid }, {}, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(Array.isArray(data)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should ignore category', (done) => { | 
					
						
							|  |  |  | 			socketCategories.ignore({ uid: posterUid }, { cid: categoryObj.cid }, (err) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				Categories.isIgnored([categoryObj.cid], posterUid, (err, isIgnored) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(isIgnored[0], true); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 					Categories.getIgnorers(categoryObj.cid, 0, -1, (err, ignorers) => { | 
					
						
							| 
									
										
										
										
											2018-12-14 16:24:17 -05:00
										 |  |  | 						assert.ifError(err); | 
					
						
							|  |  |  | 						assert.deepEqual(ignorers, [posterUid]); | 
					
						
							|  |  |  | 						done(); | 
					
						
							|  |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should watch category', (done) => { | 
					
						
							|  |  |  | 			socketCategories.watch({ uid: posterUid }, { cid: categoryObj.cid }, (err) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				Categories.isIgnored([categoryObj.cid], posterUid, (err, isIgnored) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(isIgnored[0], false); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should error if watch state does not exist', (done) => { | 
					
						
							|  |  |  | 			socketCategories.setWatchState({ uid: posterUid }, { cid: categoryObj.cid, state: 'invalid-state' }, (err) => { | 
					
						
							| 
									
										
										
										
											2018-12-14 16:24:17 -05:00
										 |  |  | 				assert.equal(err.message, '[[error:invalid-watch-state]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should check if user is moderator', (done) => { | 
					
						
							|  |  |  | 			socketCategories.isModerator({ uid: posterUid }, {}, (err, isModerator) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(!isModerator); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get category data', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getCategory({ uid: posterUid }, categoryObj.cid, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(categoryObj.cid, data.cid); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('admin socket methods', () => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 		const socketCategories = require('../src/socket.io/admin/categories'); | 
					
						
							| 
									
										
										
										
											2021-12-06 20:14:44 -05:00
										 |  |  | 		const apiCategories = require('../src/api/categories'); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 		let cid; | 
					
						
							| 
									
										
										
										
											2021-12-06 20:14:44 -05:00
										 |  |  | 		before(async () => { | 
					
						
							|  |  |  | 			const category = await apiCategories.create({ uid: adminUid }, { | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 				name: 'update name', | 
					
						
							|  |  |  | 				description: 'update description', | 
					
						
							|  |  |  | 				parentCid: categoryObj.cid, | 
					
						
							|  |  |  | 				icon: 'fa-check', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				order: '5', | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2021-12-06 20:14:44 -05:00
										 |  |  | 			cid = category.cid; | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should return error with invalid data', (done) => { | 
					
						
							|  |  |  | 			socketCategories.update({ uid: adminUid }, null, (err) => { | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 				assert.equal(err.message, '[[error:invalid-data]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should error if you try to set parent as self', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			const updateData = {}; | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			updateData[cid] = { | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				parentCid: cid, | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			socketCategories.update({ uid: adminUid }, updateData, (err) => { | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 				assert.equal(err.message, '[[error:cant-set-self-as-parent]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should error if you try to set child as parent', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			let child1Cid; | 
					
						
							|  |  |  | 			let parentCid; | 
					
						
							| 
									
										
										
										
											2018-11-06 13:34:29 -05:00
										 |  |  | 			async.waterfall([ | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					Categories.create({ name: 'parent 1', description: 'poor parent' }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					parentCid = category.cid; | 
					
						
							|  |  |  | 					Categories.create({ name: 'child1', description: 'wanna be parent', parentCid: parentCid }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					child1Cid = category.cid; | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 					const updateData = {}; | 
					
						
							| 
									
										
										
										
											2018-11-06 13:34:29 -05:00
										 |  |  | 					updateData[parentCid] = { | 
					
						
							|  |  |  | 						parentCid: child1Cid, | 
					
						
							|  |  |  | 					}; | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 					socketCategories.update({ uid: adminUid }, updateData, (err) => { | 
					
						
							| 
									
										
										
										
											2018-11-06 13:34:29 -05:00
										 |  |  | 						assert.equal(err.message, '[[error:cant-set-child-as-parent]]'); | 
					
						
							|  |  |  | 						next(); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			], done); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should update category data', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			const updateData = {}; | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			updateData[cid] = { | 
					
						
							|  |  |  | 				name: 'new name', | 
					
						
							|  |  |  | 				description: 'new description', | 
					
						
							|  |  |  | 				parentCid: 0, | 
					
						
							|  |  |  | 				order: 3, | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				icon: 'fa-hammer', | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			socketCategories.update({ uid: adminUid }, updateData, (err) => { | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				Categories.getCategoryData(cid, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-11-23 13:38:20 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(data.name, updateData[cid].name); | 
					
						
							|  |  |  | 					assert.equal(data.description, updateData[cid].description); | 
					
						
							|  |  |  | 					assert.equal(data.parentCid, updateData[cid].parentCid); | 
					
						
							|  |  |  | 					assert.equal(data.order, updateData[cid].order); | 
					
						
							|  |  |  | 					assert.equal(data.icon, updateData[cid].icon); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-11-25 17:46:29 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-04 11:45:06 -04:00
										 |  |  | 		it('should not remove category from parent if parent is set again to same category', async () => { | 
					
						
							|  |  |  | 			const parentCat = await Categories.create({ name: 'parent', description: 'poor parent' }); | 
					
						
							|  |  |  | 			const updateData = {}; | 
					
						
							|  |  |  | 			updateData[cid] = { | 
					
						
							|  |  |  | 				parentCid: parentCat.cid, | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			await Categories.update(updateData); | 
					
						
							|  |  |  | 			let data = await Categories.getCategoryData(cid); | 
					
						
							|  |  |  | 			assert.equal(data.parentCid, updateData[cid].parentCid); | 
					
						
							|  |  |  | 			let childrenCids = await db.getSortedSetRange(`cid:${parentCat.cid}:children`, 0, -1); | 
					
						
							|  |  |  | 			assert(childrenCids.includes(String(cid))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// update again to same parent
 | 
					
						
							|  |  |  | 			await Categories.update(updateData); | 
					
						
							|  |  |  | 			data = await Categories.getCategoryData(cid); | 
					
						
							|  |  |  | 			assert.equal(data.parentCid, updateData[cid].parentCid); | 
					
						
							|  |  |  | 			childrenCids = await db.getSortedSetRange(`cid:${parentCat.cid}:children`, 0, -1); | 
					
						
							|  |  |  | 			assert(childrenCids.includes(String(cid))); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should purge category', (done) => { | 
					
						
							| 
									
										
										
										
											2016-11-25 17:46:29 +03:00
										 |  |  | 			Categories.create({ | 
					
						
							|  |  |  | 				name: 'purge me', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				description: 'update description', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, category) => { | 
					
						
							| 
									
										
										
										
											2016-11-25 17:46:29 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				Topics.post({ | 
					
						
							|  |  |  | 					uid: posterUid, | 
					
						
							|  |  |  | 					cid: category.cid, | 
					
						
							|  |  |  | 					title: 'Test Topic Title', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 					content: 'The content of test topic', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				}, (err) => { | 
					
						
							| 
									
										
										
										
											2016-11-25 17:46:29 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 					socketCategories.purge({ uid: adminUid }, category.cid, (err) => { | 
					
						
							| 
									
										
										
										
											2016-11-25 17:46:29 +03:00
										 |  |  | 						assert.ifError(err); | 
					
						
							|  |  |  | 						done(); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get all category names', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getNames({ uid: adminUid }, {}, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(Array.isArray(data)); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should give privilege', (done) => { | 
					
						
							|  |  |  | 			socketCategories.setPrivilege({ uid: adminUid }, { cid: categoryObj.cid, privilege: ['groups:topics:delete'], set: true, member: 'registered-users' }, (err) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				privileges.categories.can('topics:delete', categoryObj.cid, posterUid, (err, canDeleteTopcis) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert(canDeleteTopcis); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should remove privilege', (done) => { | 
					
						
							|  |  |  | 			socketCategories.setPrivilege({ uid: adminUid }, { cid: categoryObj.cid, privilege: 'groups:topics:delete', set: false, member: 'registered-users' }, (err) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				privileges.categories.can('topics:delete', categoryObj.cid, posterUid, (err, canDeleteTopcis) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert(!canDeleteTopcis); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get privilege settings', (done) => { | 
					
						
							|  |  |  | 			socketCategories.getPrivilegeSettings({ uid: adminUid }, categoryObj.cid, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(data); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should copy privileges to children', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			let parentCid; | 
					
						
							|  |  |  | 			let child1Cid; | 
					
						
							|  |  |  | 			let child2Cid; | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 			async.waterfall([ | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					Categories.create({ name: 'parent' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					parentCid = category.cid; | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					Categories.create({ name: 'child1', parentCid: parentCid }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					child1Cid = category.cid; | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					Categories.create({ name: 'child2', parentCid: child1Cid }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					child2Cid = category.cid; | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					socketCategories.setPrivilege({ uid: adminUid }, { cid: parentCid, privilege: 'groups:topics:delete', set: true, member: 'registered-users' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2019-05-15 20:56:23 -04:00
										 |  |  | 					socketCategories.copyPrivilegesToChildren({ uid: adminUid }, { cid: parentCid, group: '' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					privileges.categories.can('topics:delete', child2Cid, posterUid, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (canDelete, next) { | 
					
						
							|  |  |  | 					assert(canDelete); | 
					
						
							|  |  |  | 					next(); | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 			], done); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should create category with settings from', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			let child1Cid; | 
					
						
							|  |  |  | 			let parentCid; | 
					
						
							| 
									
										
										
										
											2018-10-22 21:58:34 -04:00
										 |  |  | 			async.waterfall([ | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					Categories.create({ name: 'copy from', description: 'copy me' }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					parentCid = category.cid; | 
					
						
							|  |  |  | 					Categories.create({ name: 'child1', description: 'will be gone', cloneFromCid: parentCid }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					child1Cid = category.cid; | 
					
						
							|  |  |  | 					assert.equal(category.description, 'copy me'); | 
					
						
							|  |  |  | 					next(); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			], done); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should copy settings from', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			let child1Cid; | 
					
						
							|  |  |  | 			let parentCid; | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 			async.waterfall([ | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					Categories.create({ name: 'parent', description: 'copy me' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					parentCid = category.cid; | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					Categories.create({ name: 'child1' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					child1Cid = category.cid; | 
					
						
							| 
									
										
										
										
											2021-02-04 02:07:29 -07:00
										 |  |  | 					socketCategories.copySettingsFrom( | 
					
						
							|  |  |  | 						{ uid: adminUid }, | 
					
						
							|  |  |  | 						{ fromCid: parentCid, toCid: child1Cid, copyParent: true }, | 
					
						
							|  |  |  | 						next | 
					
						
							|  |  |  | 					); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2018-10-22 21:58:34 -04:00
										 |  |  | 				function (destinationCategory, next) { | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 					Categories.getCategoryField(child1Cid, 'description', next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (description, next) { | 
					
						
							|  |  |  | 					assert.equal(description, 'copy me'); | 
					
						
							|  |  |  | 					next(); | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 			], done); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should copy privileges from another category', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			let child1Cid; | 
					
						
							|  |  |  | 			let parentCid; | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 			async.waterfall([ | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					Categories.create({ name: 'parent', description: 'copy me' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					parentCid = category.cid; | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					Categories.create({ name: 'child1' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					child1Cid = category.cid; | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					socketCategories.setPrivilege({ uid: adminUid }, { cid: parentCid, privilege: 'groups:topics:delete', set: true, member: 'registered-users' }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2017-02-18 12:30:49 -07:00
										 |  |  | 					socketCategories.copyPrivilegesFrom({ uid: adminUid }, { fromCid: parentCid, toCid: child1Cid }, next); | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					privileges.categories.can('topics:delete', child1Cid, posterUid, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (canDelete, next) { | 
					
						
							|  |  |  | 					assert(canDelete); | 
					
						
							|  |  |  | 					next(); | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2016-12-02 18:08:08 +03:00
										 |  |  | 			], done); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2019-05-15 20:56:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should copy privileges from another category for a single group', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			let child1Cid; | 
					
						
							|  |  |  | 			let parentCid; | 
					
						
							| 
									
										
										
										
											2019-05-15 20:56:23 -04:00
										 |  |  | 			async.waterfall([ | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					Categories.create({ name: 'parent', description: 'copy me' }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					parentCid = category.cid; | 
					
						
							|  |  |  | 					Categories.create({ name: 'child1' }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (category, next) { | 
					
						
							|  |  |  | 					child1Cid = category.cid; | 
					
						
							|  |  |  | 					socketCategories.setPrivilege({ uid: adminUid }, { cid: parentCid, privilege: 'groups:topics:delete', set: true, member: 'registered-users' }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					socketCategories.copyPrivilegesFrom({ uid: adminUid }, { fromCid: parentCid, toCid: child1Cid, group: 'registered-users' }, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							|  |  |  | 					privileges.categories.can('topics:delete', child1Cid, 0, next); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function (canDelete, next) { | 
					
						
							|  |  |  | 					assert(!canDelete); | 
					
						
							|  |  |  | 					next(); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			], done); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	it('should get active users', (done) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 16:10:07 +03:00
										 |  |  | 		Categories.create({ | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 			name: 'test', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		}, (err, category) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 16:10:07 +03:00
										 |  |  | 			assert.ifError(err); | 
					
						
							|  |  |  | 			Topics.post({ | 
					
						
							|  |  |  | 				uid: posterUid, | 
					
						
							|  |  |  | 				cid: category.cid, | 
					
						
							|  |  |  | 				title: 'Test Topic Title', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				content: 'The content of test topic', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 16:10:07 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				Categories.getActiveUsers(category.cid, (err, uids) => { | 
					
						
							| 
									
										
										
										
											2016-12-02 16:10:07 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.equal(uids[0], posterUid); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('tag whitelist', () => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 		let cid; | 
					
						
							|  |  |  | 		const socketTopics = require('../src/socket.io/topics'); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		before((done) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 			Categories.create({ | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				name: 'test', | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, category) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				cid = category.cid; | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should error if data is invalid', (done) => { | 
					
						
							|  |  |  | 			socketTopics.isTagAllowed({ uid: posterUid }, null, (err) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 				assert.equal(err.message, '[[error:invalid-data]]'); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should return true if category whitelist is empty', (done) => { | 
					
						
							|  |  |  | 			socketTopics.isTagAllowed({ uid: posterUid }, { tag: 'notallowed', cid: cid }, (err, allowed) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(allowed); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should add tags to category whitelist', (done) => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 			const data = {}; | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 			data[cid] = { | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				tagWhitelist: 'nodebb,jquery,javascript', | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			Categories.update(data, (err) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 				db.getSortedSetRange(`cid:${cid}:tag:whitelist`, 0, -1, (err, tagWhitelist) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 					assert.ifError(err); | 
					
						
							|  |  |  | 					assert.deepEqual(['nodebb', 'jquery', 'javascript'], tagWhitelist); | 
					
						
							|  |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should return false if category whitelist does not have tag', (done) => { | 
					
						
							|  |  |  | 			socketTopics.isTagAllowed({ uid: posterUid }, { tag: 'notallowed', cid: cid }, (err, allowed) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(!allowed); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should return true if category whitelist has tag', (done) => { | 
					
						
							|  |  |  | 			socketTopics.isTagAllowed({ uid: posterUid }, { tag: 'nodebb', cid: cid }, (err, allowed) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert(allowed); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should post a topic with only allowed tags', (done) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 			Topics.post({ | 
					
						
							|  |  |  | 				uid: posterUid, | 
					
						
							|  |  |  | 				cid: cid, | 
					
						
							|  |  |  | 				title: 'Test Topic Title', | 
					
						
							|  |  |  | 				content: 'The content of test topic', | 
					
						
							| 
									
										
										
										
											2017-02-17 19:31:21 -07:00
										 |  |  | 				tags: ['nodebb', 'jquery', 'notallowed'], | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, data) => { | 
					
						
							| 
									
										
										
										
											2016-12-09 18:53:08 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(data.topicData.tags.length, 2); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-12-02 16:10:07 +03:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2016-11-21 13:47:34 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('privileges', () => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 		const privileges = require('../src/privileges'); | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should return empty array if uids is empty array', (done) => { | 
					
						
							|  |  |  | 			privileges.categories.filterUids('find', categoryObj.cid, [], (err, uids) => { | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(uids.length, 0); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should filter uids by privilege', (done) => { | 
					
						
							|  |  |  | 			privileges.categories.filterUids('find', categoryObj.cid, [1, 2, 3, 4], (err, uids) => { | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.deepEqual(uids, [1, 2]); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should load category user privileges', (done) => { | 
					
						
							|  |  |  | 			privileges.categories.userPrivileges(categoryObj.cid, 1, (err, data) => { | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.deepEqual(data, { | 
					
						
							|  |  |  | 					find: false, | 
					
						
							|  |  |  | 					'posts:delete': false, | 
					
						
							|  |  |  | 					read: false, | 
					
						
							|  |  |  | 					'topics:reply': false, | 
					
						
							|  |  |  | 					'topics:read': false, | 
					
						
							|  |  |  | 					'topics:create': false, | 
					
						
							| 
									
										
										
										
											2017-06-16 14:25:40 -04:00
										 |  |  | 					'topics:tag': false, | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 					'topics:delete': false, | 
					
						
							| 
									
										
										
										
											2021-03-24 21:28:02 +03:00
										 |  |  | 					'topics:schedule': false, | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 					'posts:edit': false, | 
					
						
							| 
									
										
										
										
											2018-06-07 12:40:20 -04:00
										 |  |  | 					'posts:history': false, | 
					
						
							| 
									
										
										
										
											2018-01-09 14:33:23 -05:00
										 |  |  | 					'posts:upvote': false, | 
					
						
							|  |  |  | 					'posts:downvote': false, | 
					
						
							| 
									
										
										
										
											2017-06-15 14:02:51 -04:00
										 |  |  | 					purge: false, | 
					
						
							| 
									
										
										
										
											2018-06-08 16:17:17 -04:00
										 |  |  | 					'posts:view_deleted': false, | 
					
						
							| 
									
										
										
										
											2017-06-15 14:02:51 -04:00
										 |  |  | 					moderate: false, | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 				}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should load global user privileges', (done) => { | 
					
						
							|  |  |  | 			privileges.global.userPrivileges(1, (err, data) => { | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.deepEqual(data, { | 
					
						
							| 
									
										
										
										
											2018-05-25 12:09:27 -04:00
										 |  |  | 					ban: false, | 
					
						
							| 
									
										
										
										
											2020-11-16 22:47:23 +03:00
										 |  |  | 					invite: false, | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 					chat: false, | 
					
						
							| 
									
										
										
										
											2018-05-28 11:29:37 -04:00
										 |  |  | 					'search:content': false, | 
					
						
							|  |  |  | 					'search:users': false, | 
					
						
							|  |  |  | 					'search:tags': false, | 
					
						
							| 
									
										
										
										
											2019-09-17 18:02:52 +00:00
										 |  |  | 					'view:users:info': false, | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 					'upload:post:image': false, | 
					
						
							|  |  |  | 					'upload:post:file': false, | 
					
						
							| 
									
										
										
										
											2018-02-28 17:38:31 -05:00
										 |  |  | 					signature: false, | 
					
						
							| 
									
										
										
										
											2018-09-29 06:49:41 -04:00
										 |  |  | 					'local:login': false, | 
					
						
							| 
									
										
										
										
											2019-02-04 14:16:47 -05:00
										 |  |  | 					'group:create': false, | 
					
						
							| 
									
										
										
										
											2019-02-05 12:08:18 -05:00
										 |  |  | 					'view:users': false, | 
					
						
							|  |  |  | 					'view:tags': false, | 
					
						
							|  |  |  | 					'view:groups': false, | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 				}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should load category group privileges', (done) => { | 
					
						
							|  |  |  | 			privileges.categories.groupPrivileges(categoryObj.cid, 'registered-users', (err, data) => { | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.deepEqual(data, { | 
					
						
							|  |  |  | 					'groups:find': true, | 
					
						
							|  |  |  | 					'groups:posts:edit': true, | 
					
						
							| 
									
										
										
										
											2018-06-07 12:40:20 -04:00
										 |  |  | 					'groups:posts:history': true, | 
					
						
							| 
									
										
										
										
											2018-01-09 14:33:23 -05:00
										 |  |  | 					'groups:posts:upvote': true, | 
					
						
							|  |  |  | 					'groups:posts:downvote': true, | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 					'groups:topics:delete': false, | 
					
						
							|  |  |  | 					'groups:topics:create': true, | 
					
						
							|  |  |  | 					'groups:topics:reply': true, | 
					
						
							| 
									
										
										
										
											2017-06-16 14:25:40 -04:00
										 |  |  | 					'groups:topics:tag': true, | 
					
						
							| 
									
										
										
										
											2021-03-24 21:28:02 +03:00
										 |  |  | 					'groups:topics:schedule': false, | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 					'groups:posts:delete': true, | 
					
						
							|  |  |  | 					'groups:read': true, | 
					
						
							|  |  |  | 					'groups:topics:read': true, | 
					
						
							| 
									
										
										
										
											2017-06-15 14:02:51 -04:00
										 |  |  | 					'groups:purge': false, | 
					
						
							| 
									
										
										
										
											2018-06-08 16:17:17 -04:00
										 |  |  | 					'groups:posts:view_deleted': false, | 
					
						
							| 
									
										
										
										
											2017-06-15 14:02:51 -04:00
										 |  |  | 					'groups:moderate': false, | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 				}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should load global group privileges', (done) => { | 
					
						
							|  |  |  | 			privileges.global.groupPrivileges('registered-users', (err, data) => { | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.deepEqual(data, { | 
					
						
							| 
									
										
										
										
											2018-05-25 12:09:27 -04:00
										 |  |  | 					'groups:ban': false, | 
					
						
							| 
									
										
										
										
											2020-11-16 22:47:23 +03:00
										 |  |  | 					'groups:invite': false, | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 					'groups:chat': true, | 
					
						
							| 
									
										
										
										
											2018-05-28 11:29:37 -04:00
										 |  |  | 					'groups:search:content': true, | 
					
						
							|  |  |  | 					'groups:search:users': true, | 
					
						
							|  |  |  | 					'groups:search:tags': true, | 
					
						
							| 
									
										
										
										
											2019-02-05 12:08:18 -05:00
										 |  |  | 					'groups:view:users': true, | 
					
						
							| 
									
										
										
										
											2019-09-17 18:02:52 +00:00
										 |  |  | 					'groups:view:users:info': false, | 
					
						
							| 
									
										
										
										
											2019-02-05 12:08:18 -05:00
										 |  |  | 					'groups:view:tags': true, | 
					
						
							|  |  |  | 					'groups:view:groups': true, | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 					'groups:upload:post:image': true, | 
					
						
							|  |  |  | 					'groups:upload:post:file': false, | 
					
						
							| 
									
										
										
										
											2018-02-28 17:38:31 -05:00
										 |  |  | 					'groups:signature': true, | 
					
						
							| 
									
										
										
										
											2018-09-29 06:49:41 -04:00
										 |  |  | 					'groups:local:login': true, | 
					
						
							| 
									
										
										
										
											2019-02-04 14:16:47 -05:00
										 |  |  | 					'groups:group:create': false, | 
					
						
							| 
									
										
										
										
											2018-01-03 13:27:30 -05:00
										 |  |  | 				}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should return false if cid is falsy', (done) => { | 
					
						
							|  |  |  | 			privileges.categories.isUserAllowedTo('find', null, adminUid, (err, isAllowed) => { | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.equal(isAllowed, false); | 
					
						
							|  |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2019-01-04 13:27:31 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		describe('Categories.getModeratorUids', () => { | 
					
						
							|  |  |  | 			before((done) => { | 
					
						
							| 
									
										
										
										
											2019-01-04 13:27:31 -05:00
										 |  |  | 				async.series([ | 
					
						
							|  |  |  | 					async.apply(groups.create, { name: 'testGroup' }), | 
					
						
							|  |  |  | 					async.apply(groups.join, 'cid:1:privileges:groups:moderate', 'testGroup'), | 
					
						
							|  |  |  | 					async.apply(groups.join, 'testGroup', 1), | 
					
						
							|  |  |  | 				], done); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			it('should retrieve all users with moderator bit in category privilege', (done) => { | 
					
						
							|  |  |  | 				Categories.getModeratorUids([1, 2], (err, uids) => { | 
					
						
							| 
									
										
										
										
											2019-01-04 13:27:31 -05:00
										 |  |  | 					assert.ifError(err); | 
					
						
							| 
									
										
										
										
											2019-05-30 20:12:04 -04:00
										 |  |  | 					assert.strictEqual(uids.length, 2); | 
					
						
							| 
									
										
										
										
											2019-05-30 19:30:47 -04:00
										 |  |  | 					assert(uids[0].includes('1')); | 
					
						
							| 
									
										
										
										
											2019-05-30 20:12:04 -04:00
										 |  |  | 					assert.strictEqual(uids[1].length, 0); | 
					
						
							| 
									
										
										
										
											2019-01-04 13:27:31 -05:00
										 |  |  | 					done(); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			it('should not fail when there are multiple groups', (done) => { | 
					
						
							| 
									
										
										
										
											2019-05-29 15:44:33 -04:00
										 |  |  | 				async.series([ | 
					
						
							|  |  |  | 					async.apply(groups.create, { name: 'testGroup2' }), | 
					
						
							|  |  |  | 					async.apply(groups.join, 'cid:1:privileges:groups:moderate', 'testGroup2'), | 
					
						
							|  |  |  | 					async.apply(groups.join, 'testGroup2', 1), | 
					
						
							|  |  |  | 					function (next) { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 						Categories.getModeratorUids([1, 2], (err, uids) => { | 
					
						
							| 
									
										
										
										
											2019-05-29 15:44:33 -04:00
										 |  |  | 							assert.ifError(err); | 
					
						
							|  |  |  | 							assert(uids[0].includes('1')); | 
					
						
							|  |  |  | 							next(); | 
					
						
							|  |  |  | 						}); | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 				], done); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			after((done) => { | 
					
						
							| 
									
										
										
										
											2019-01-04 13:27:31 -05:00
										 |  |  | 				async.series([ | 
					
						
							|  |  |  | 					async.apply(groups.leave, 'cid:1:privileges:groups:moderate', 'testGroup'), | 
					
						
							| 
									
										
										
										
											2019-05-29 15:44:33 -04:00
										 |  |  | 					async.apply(groups.leave, 'cid:1:privileges:groups:moderate', 'testGroup2'), | 
					
						
							| 
									
										
										
										
											2019-01-04 13:27:31 -05:00
										 |  |  | 					async.apply(groups.destroy, 'testGroup'), | 
					
						
							| 
									
										
										
										
											2019-05-29 15:44:33 -04:00
										 |  |  | 					async.apply(groups.destroy, 'testGroup2'), | 
					
						
							| 
									
										
										
										
											2019-01-04 13:27:31 -05:00
										 |  |  | 				], done); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2017-03-03 21:04:01 +03:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2017-06-06 16:40:32 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	describe('getTopicIds', () => { | 
					
						
							| 
									
										
										
										
											2021-02-04 00:06:15 -07:00
										 |  |  | 		const plugins = require('../src/plugins'); | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 		it('should get topic ids with filter', (done) => { | 
					
						
							| 
									
										
										
										
											2017-06-06 16:40:32 -04:00
										 |  |  | 			function method(data, callback) { | 
					
						
							|  |  |  | 				data.tids = [1, 2, 3]; | 
					
						
							|  |  |  | 				callback(null, data); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-27 17:36:58 -05:00
										 |  |  | 			plugins.hooks.register('my-test-plugin', { | 
					
						
							| 
									
										
										
										
											2017-06-06 16:40:32 -04:00
										 |  |  | 				hook: 'filter:categories.getTopicIds', | 
					
						
							|  |  |  | 				method: method, | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Categories.getTopicIds({ | 
					
						
							|  |  |  | 				cid: categoryObj.cid, | 
					
						
							|  |  |  | 				start: 0, | 
					
						
							|  |  |  | 				stop: 19, | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 			}, (err, tids) => { | 
					
						
							| 
									
										
										
										
											2017-06-06 16:40:32 -04:00
										 |  |  | 				assert.ifError(err); | 
					
						
							|  |  |  | 				assert.deepEqual(tids, [1, 2, 3]); | 
					
						
							| 
									
										
										
										
											2021-01-27 17:36:58 -05:00
										 |  |  | 				plugins.hooks.unregister('my-test-plugin', 'filter:categories.getTopicIds', method); | 
					
						
							| 
									
										
										
										
											2017-06-06 16:40:32 -04:00
										 |  |  | 				done(); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2020-05-12 12:18:30 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 00:01:39 -07:00
										 |  |  | 	it('should return nested children categories', async () => { | 
					
						
							| 
									
										
										
										
											2020-05-12 12:18:30 -04:00
										 |  |  | 		const rootCategory = await Categories.create({ name: 'root' }); | 
					
						
							|  |  |  | 		const child1 = await Categories.create({ name: 'child1', parentCid: rootCategory.cid }); | 
					
						
							|  |  |  | 		const child2 = await Categories.create({ name: 'child2', parentCid: child1.cid }); | 
					
						
							|  |  |  | 		const data = await Categories.getCategoryById({ | 
					
						
							|  |  |  | 			uid: 1, | 
					
						
							|  |  |  | 			cid: rootCategory.cid, | 
					
						
							|  |  |  | 			start: 0, | 
					
						
							|  |  |  | 			stop: 19, | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 		assert.strictEqual(child1.cid, data.children[0].cid); | 
					
						
							|  |  |  | 		assert.strictEqual(child2.cid, data.children[0].children[0].cid); | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2014-01-24 00:42:34 -05:00
										 |  |  | }); |