forked from cybrespace/pinafore
		
	
		
			
				
	
	
		
			76 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {
 | 
						|
  getFavoritesCount,
 | 
						|
  getNthFavoriteButton, getNthFavorited, getNthStatus, getUrl, homeNavButton, notificationsNavButton,
 | 
						|
  scrollToBottomOfTimeline, scrollToTopOfTimeline
 | 
						|
} from '../utils'
 | 
						|
import { foobarRole } from '../roles'
 | 
						|
 | 
						|
fixture`100-favorite-unfavorite.js`
 | 
						|
  .page`http://localhost:4002`
 | 
						|
 | 
						|
test('favorites a status', async t => {
 | 
						|
  await t.useRole(foobarRole)
 | 
						|
    .hover(getNthStatus(4))
 | 
						|
    .expect(getNthFavorited(4)).eql('false')
 | 
						|
    .click(getNthFavoriteButton(4))
 | 
						|
    .expect(getNthFavorited(4)).eql('true')
 | 
						|
 | 
						|
  // scroll down and back up to force an unrender
 | 
						|
  await scrollToBottomOfTimeline(t)
 | 
						|
  await scrollToTopOfTimeline(t)
 | 
						|
  await t
 | 
						|
    .hover(getNthStatus(4))
 | 
						|
    .expect(getNthFavorited(4)).eql('true')
 | 
						|
    .click(notificationsNavButton)
 | 
						|
    .click(homeNavButton)
 | 
						|
    .expect(getNthFavorited(4)).eql('true')
 | 
						|
    .click(notificationsNavButton)
 | 
						|
    .expect(getUrl()).contains('/notifications')
 | 
						|
    .click(homeNavButton)
 | 
						|
    .expect(getUrl()).eql('http://localhost:4002/')
 | 
						|
    .hover(getNthStatus(4))
 | 
						|
    .expect(getNthFavorited(4)).eql('true')
 | 
						|
    .click(getNthFavoriteButton(4))
 | 
						|
    .expect(getNthFavorited(4)).eql('false')
 | 
						|
})
 | 
						|
 | 
						|
test('unfavorites a status', async t => {
 | 
						|
  await t.useRole(foobarRole)
 | 
						|
    .expect(getNthFavorited(1)).eql('true')
 | 
						|
    .click(getNthFavoriteButton(1))
 | 
						|
    .expect(getNthFavorited(1)).eql('false')
 | 
						|
 | 
						|
  // scroll down and back up to force an unrender
 | 
						|
  await scrollToBottomOfTimeline(t)
 | 
						|
  await scrollToTopOfTimeline(t)
 | 
						|
  await t
 | 
						|
    .expect(getNthFavorited(1)).eql('false')
 | 
						|
    .click(notificationsNavButton)
 | 
						|
    .click(homeNavButton)
 | 
						|
    .expect(getNthFavorited(1)).eql('false')
 | 
						|
    .click(notificationsNavButton)
 | 
						|
    .navigateTo('/')
 | 
						|
    .expect(getNthFavorited(1)).eql('false')
 | 
						|
    .click(getNthFavoriteButton(1))
 | 
						|
    .expect(getNthFavorited(1)).eql('true')
 | 
						|
})
 | 
						|
 | 
						|
test('Keeps the correct favorites count', async t => {
 | 
						|
  await t.useRole(foobarRole)
 | 
						|
    .hover(getNthStatus(4))
 | 
						|
    .click(getNthFavoriteButton(4))
 | 
						|
    .expect(getNthFavorited(4)).eql('true')
 | 
						|
    .click(getNthStatus(4))
 | 
						|
    .expect(getUrl()).contains('/status')
 | 
						|
    .expect(getNthFavorited(0)).eql('true')
 | 
						|
    .expect(getFavoritesCount()).eql(2)
 | 
						|
    .click(homeNavButton)
 | 
						|
    .expect(getUrl()).eql('http://localhost:4002/')
 | 
						|
    .hover(getNthStatus(4))
 | 
						|
    .click(getNthFavoriteButton(4))
 | 
						|
    .expect(getNthFavorited(4)).eql('false')
 | 
						|
    .click(getNthStatus(4))
 | 
						|
    .expect(getUrl()).contains('/status')
 | 
						|
    .expect(getNthFavorited(0)).eql('false')
 | 
						|
    .expect(getFavoritesCount()).eql(1)
 | 
						|
})
 |