mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	add timeline tests
This commit is contained in:
		
							parent
							
								
									216b20d2db
								
							
						
					
					
						commit
						683b71fc7e
					
				
					 1 changed files with 20 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -115,6 +115,16 @@ describe('Streaming', () => {
 | 
			
		|||
				assert.strictEqual(fired, true);
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
			test('自分の visibility: followers な投稿が流れる', async () => {
 | 
			
		||||
				const fired = await waitFire(
 | 
			
		||||
					ayano, 'homeTimeline',	// ayano:Home
 | 
			
		||||
					() => api('notes/create', { text: 'foo', visibility: 'followers' }, ayano),	// ayano posts
 | 
			
		||||
					msg => msg.type === 'note' && msg.body.text === 'foo',
 | 
			
		||||
				);
 | 
			
		||||
 | 
			
		||||
				assert.strictEqual(fired, true);
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
			test('フォローしているユーザーの投稿が流れる', async () => {
 | 
			
		||||
				const fired = await waitFire(
 | 
			
		||||
					ayano, 'homeTimeline',		// ayano:home
 | 
			
		||||
| 
						 | 
				
			
			@ -125,6 +135,16 @@ describe('Streaming', () => {
 | 
			
		|||
				assert.strictEqual(fired, true);
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
			test('フォローしているユーザーの visibility: followers な投稿が流れる', async () => {
 | 
			
		||||
				const fired = await waitFire(
 | 
			
		||||
					ayano, 'homeTimeline',		// ayano:home
 | 
			
		||||
					() => api('notes/create', { text: 'foo', visibility: 'followers' }, kyoko),	// kyoko posts
 | 
			
		||||
					msg => msg.type === 'note' && msg.body.userId === kyoko.id,	// wait kyoko
 | 
			
		||||
				);
 | 
			
		||||
 | 
			
		||||
				assert.strictEqual(fired, true);
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
			test('フォローしていないユーザーの投稿は流れない', async () => {
 | 
			
		||||
				const fired = await waitFire(
 | 
			
		||||
					kyoko, 'homeTimeline',	// kyoko:home
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue