* fix(a11y): fix NVDA crash on long aria-label fixes #694 * use the word truncated instead of ellipsis * fix test * really fix tests
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { actions } from './mastodon-data'
 | 
						|
import { users } from '../tests/users'
 | 
						|
import { postStatus } from '../routes/_api/statuses'
 | 
						|
import { followAccount } from '../routes/_api/follow'
 | 
						|
import { favoriteStatus } from '../routes/_api/favorite'
 | 
						|
import { reblogStatus } from '../routes/_api/reblog'
 | 
						|
import fetch from 'node-fetch'
 | 
						|
import FileApi from 'file-api'
 | 
						|
import { pinStatus } from '../routes/_api/pin'
 | 
						|
import { submitMedia } from '../tests/submitMedia'
 | 
						|
 | 
						|
global.File = FileApi.File
 | 
						|
global.FormData = FileApi.FormData
 | 
						|
global.fetch = fetch
 | 
						|
 | 
						|
export async function restoreMastodonData () {
 | 
						|
  console.log('Restoring mastodon data...')
 | 
						|
  let internalIdsToIds = {}
 | 
						|
  for (let action of actions) {
 | 
						|
    if (!action.post) {
 | 
						|
      // If the action is a boost, favorite, etc., then it needs to
 | 
						|
      // be delayed, otherwise it may appear in an unpredictable order and break the tests.
 | 
						|
      await new Promise(resolve => setTimeout(resolve, 1000))
 | 
						|
    }
 | 
						|
    console.log(JSON.stringify(action))
 | 
						|
    let accessToken = users[action.user].accessToken
 | 
						|
 | 
						|
    if (action.post) {
 | 
						|
      let { text, media, sensitive, spoiler, privacy, inReplyTo, internalId } = action.post
 | 
						|
      let mediaIds = media && await Promise.all(media.map(async mediaItem => {
 | 
						|
        let mediaResponse = await submitMedia(accessToken, mediaItem, 'kitten')
 | 
						|
        return mediaResponse.id
 | 
						|
      }))
 | 
						|
      let inReplyToId = inReplyTo && internalIdsToIds[inReplyTo]
 | 
						|
      let status = await postStatus('localhost:3000', accessToken, text, inReplyToId, mediaIds,
 | 
						|
        sensitive, spoiler, privacy || 'public')
 | 
						|
      if (typeof internalId !== 'undefined') {
 | 
						|
        internalIdsToIds[internalId] = status.id
 | 
						|
      }
 | 
						|
    } else if (action.follow) {
 | 
						|
      await followAccount('localhost:3000', accessToken, users[action.follow].id)
 | 
						|
    } else if (action.favorite) {
 | 
						|
      await favoriteStatus('localhost:3000', accessToken, internalIdsToIds[action.favorite])
 | 
						|
    } else if (action.boost) {
 | 
						|
      await reblogStatus('localhost:3000', accessToken, internalIdsToIds[action.boost])
 | 
						|
    } else if (action.pin) {
 | 
						|
      await pinStatus('localhost:3000', accessToken, internalIdsToIds[action.pin])
 | 
						|
    }
 | 
						|
  }
 | 
						|
  console.log('Restored mastodon data')
 | 
						|
}
 |