mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 19:15:58 +01:00 
			
		
		
		
	* feat: allow both callback&and await
* feat: ignore async key
* feat: callbackify and promisify in same file
* Revert "feat: callbackify and promisify in same file"
This reverts commit cea206a9b8.
* feat: no need to store .callbackify
* feat: change getTopics to async
* feat: remove .async
* fix: byScore
* feat: rewrite topics/index and social with async/await
* fix: rewrite topics/data.js
fix issue with async.waterfall, only pass result if its not undefined
* feat: add callbackify to redis/psql
* feat: psql use await
* fix: redis 🌋
* feat: less returns
* feat: more await rewrite
* fix: redis tests
* feat: convert sortedSetAdd
rewrite psql transaction to async/await
* feat: 🐶
* feat: test
* feat: log client and query
* feat: log bind
* feat: more logs
* feat: more logs
* feat: check perform
* feat: dont callbackify transaction
* feat: remove logs
* fix: main functions
* feat: more logs
* fix: increment
* fix: rename
* feat: remove cls
* fix: remove console.log
* feat: add deprecation message to .async usage
* feat: update more dbal methods
* fix: redis :voodoo:
* feat:  fix redis zrem, convert setObject
* feat: upgrade getObject methods
* fix: psql getObjectField
* fix: redis tests
* feat: getObjectKeys
* feat: getObjectValues
* feat: isObjectField
* fix: add missing return
* feat: delObjectField
* feat: incrObjectField
* fix: add missing await
* feat: remove exposed helpers
* feat: list methods
* feat: flush/empty
* feat: delete
* fix: redis delete all
* feat: get/set
* feat: incr/rename
* feat: type
* feat: expire
* feat: setAdd
* feat: setRemove
* feat: isSetMember
* feat: getSetMembers
* feat: setCount, setRemoveRandom
* feat: zcard,zcount
* feat: sortedSetRank
* feat: isSortedSetMember
* feat: zincrby
* feat: sortedSetLex
* feat: processSortedSet
* fix: add mising await
* feat: debug psql
* fix: psql test
* fix: test
* fix: another test
* fix: test fix
* fix: psql tests
* feat: remove logs
* feat: user arrow func
use builtin async promises
* feat: topic bookmarks
* feat: topic.delete
* feat: topic.restore
* feat: topics.purge
* feat: merge
* feat: suggested
* feat: topics/user.js
* feat: topics modules
* feat: topics/follow
* fix: deprecation msg
* feat: fork
* feat: topics/posts
* feat: sorted/recent
* feat: topic/teaser
* feat: topics/tools
* feat: topics/unread
* feat: add back node versions
disable deprecation notice
wrap async controllers in try/catch
* feat: use db directly
* feat: promisify in place
* fix: redis/psql
* feat: deprecation message
logs for psql
* feat: more logs
* feat: more logs
* feat: logs again
* feat: more logs
* fix: call release
* feat: restore travis, remove logs
* fix: loops
* feat: remove .async. usage
		
	
		
			
				
	
	
		
			116 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var async = require('async');
 | |
| var assert = require('assert');
 | |
| 
 | |
| var db = require('./mocks/databasemock');
 | |
| 
 | |
| var batch = require('../src/batch');
 | |
| 
 | |
| describe('batch', function () {
 | |
| 	const scores = [];
 | |
| 	const values = [];
 | |
| 	before(function (done) {
 | |
| 		for (let i = 0; i < 100; i++) {
 | |
| 			scores.push(i);
 | |
| 			values.push('val' + i);
 | |
| 		}
 | |
| 		db.sortedSetAdd('processMe', scores, values, done);
 | |
| 	});
 | |
| 
 | |
| 	it('should process sorted set with callbacks', function (done) {
 | |
| 		let total = 0;
 | |
| 		batch.processSortedSet('processMe', function (items, next) {
 | |
| 			items.forEach(function (item) {
 | |
| 				total += item.score;
 | |
| 			});
 | |
| 
 | |
| 			setImmediate(next);
 | |
| 		}, {
 | |
| 			withScores: true,
 | |
| 			interval: 50,
 | |
| 			batch: 10,
 | |
| 		}, function (err) {
 | |
| 			assert.ifError(err);
 | |
| 			assert.strictEqual(total, 4950);
 | |
| 			done();
 | |
| 		});
 | |
| 	});
 | |
| 
 | |
| 	it('should process sorted set with callbacks', function (done) {
 | |
| 		let total = 0;
 | |
| 		batch.processSortedSet('processMe', function (values, next) {
 | |
| 			values.forEach(function (val) {
 | |
| 				total += val.length;
 | |
| 			});
 | |
| 
 | |
| 			setImmediate(next);
 | |
| 		}, function (err) {
 | |
| 			assert.ifError(err);
 | |
| 			assert.strictEqual(total, 490);
 | |
| 			done();
 | |
| 		});
 | |
| 	});
 | |
| 
 | |
| 	it('should process sorted set with async/await', async function () {
 | |
| 		let total = 0;
 | |
| 		await batch.processSortedSet('processMe', function (values, next) {
 | |
| 			values.forEach(function (val) {
 | |
| 				total += val.length;
 | |
| 			});
 | |
| 
 | |
| 			setImmediate(next);
 | |
| 		}, {});
 | |
| 
 | |
| 		assert.strictEqual(total, 490);
 | |
| 	});
 | |
| 
 | |
| 	it('should process sorted set with async/await', async function () {
 | |
| 		let total = 0;
 | |
| 		await batch.processSortedSet('processMe', async function (values) {
 | |
| 			values.forEach(function (val) {
 | |
| 				total += val.length;
 | |
| 			});
 | |
| 			await db.getObject('doesnotexist');
 | |
| 		}, {});
 | |
| 
 | |
| 		assert.strictEqual(total, 490);
 | |
| 	});
 | |
| 
 | |
| 	it('should process array with callbacks', function (done) {
 | |
| 		let total = 0;
 | |
| 		batch.processArray(scores, function (nums, next) {
 | |
| 			nums.forEach(function (n) {
 | |
| 				total += n;
 | |
| 			});
 | |
| 
 | |
| 			setImmediate(next);
 | |
| 		}, {
 | |
| 			withScores: true,
 | |
| 			interval: 50,
 | |
| 			batch: 10,
 | |
| 		}, function (err) {
 | |
| 			assert.ifError(err);
 | |
| 			assert.strictEqual(total, 4950);
 | |
| 			done();
 | |
| 		});
 | |
| 	});
 | |
| 
 | |
| 	it('should process array with async/await', async function () {
 | |
| 		let total = 0;
 | |
| 		await batch.processArray(scores, function (nums, next) {
 | |
| 			nums.forEach(function (n) {
 | |
| 				total += n;
 | |
| 			});
 | |
| 
 | |
| 			setImmediate(next);
 | |
| 		}, {
 | |
| 			withScores: true,
 | |
| 			interval: 50,
 | |
| 			batch: 10,
 | |
| 		});
 | |
| 
 | |
| 		assert.strictEqual(total, 4950);
 | |
| 	});
 | |
| });
 |