Socket
Socket
Sign inDemoInstall

feynman

Package Overview
Dependencies
Maintainers
4
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feynman

A screenplay pattern library for javascript


Version published
Weekly downloads
0
decreased by-100%
Maintainers
4
Weekly downloads
 
Created
Source

Feynman

A library for helping you organise your JavaScript test automation code, inspired by the screenplay pattern.

What's unique about feynman is that you can define multiple perspectives that allow you to run the same tasks against your application in different ways. More on that later.

I'm going to assume you know little or nothing about the screenplay pattern and explain this from the ground up.

The first concept to grasp is an Action.

Actions use abilities do stuff to your app

An action is a function that takes a set of named arguments, known as abilities, and uses them to do stuff to your app.

For example, you might use one to put stuff into a database:

const createUser = ({ database }) => database.insert({ user: { username: 'matt' }})

Or you might use one to navigate through your UI:

const visitLogin = ({ browser }) => browser.get("https://localhost:5000/login")

You don't have to, but it's idiomatic in screenplay to group actions together into little namespaces:

const Visit = {
  login: ({ browser }) => browser.get("https://localhost:5000/login")
}

You'll see most of our examples, and the actions that come with this library, tend to use that style.

So where do these abilities come from? They come from the Actor.

Actors perform actions using their abilities

At its most basic, you give an Actor some abilities and then tell them to perform some Actions:

const { Actor } = require('feynman')
const browser = require('create_browser')()

const abilities = { browser }
const Visit = {
  login: ({ browser }) => browser.get("https://localhost:5000/login")
}

const actor = Actor(abilities)
actor.attemptsTo(
  Visit.login
)

The whole set of abilities (in this case, just the browser) is passed to each action when it's attempted. The action can just pick out the abilities it needs to do its work.

There is one more ability too, which is where this pattern starts to get its power.

Actions are composable

Actions are composable because they're also passed the actor as another ability, so you can tell them to perform more actions:

const LogIn = {
  as: username => ({ actor, browser }) => {
    actor.attemptsTo(
      Visit.login, 
      FillIn.label('username').with(username)
    )
  }
}

const actor = Actor(abilities)
actor.attemptsTo(LogIn.as("matt"))

This allows you to build up higher-level behaviours out of granular actions.

If you want your acceptance tests to run fast, you often want to be able to exercise the same behaviour through different levels in your stack.

That's where perspectives come in.

Actors can take different perspectives

.... TODO

const { Book, CancelRoom, CurrentBookings } = require('./tasks')
const throughTheDomain = new DomainPerspective()
const throughTheWebApp = new WebAppPerspective()

const Book = Tasks(Book => {
  Book.aRoom
  Book.aFlight = destination => ???
  Book.aHoliday = destination => ???
})

const Book = { 
  aRoom: 'book-a-room-123',
  aFlight: 'la ala la',
}

const globalPerspecive = definePerspective(() => {
  action(Book.aHoliday, destination => ({actor}) => actor.attemptsTo(Book.aRoom, Book.aFlight(destination)))
})

const domainPerspective = definePerspective(() => {
  action(Book.aRoom, ({domain, state}) => {
    domain.bookARoom(state.get('email'))
  })
  action(Book.aFlight, destination => ({domain}) => {
    domain.bookAFlight(destination)
  })
})






// interacting tasks (i.e. interactions? or are interations the methods called in those low-level tasks?)
const BookARoom = roomNumber => ({ type: 'BookARoom', roomNumber })
const BookAFlight = flightNumber => ({ type: 'BookAFlight', flightNumber })
// high order tasks
const BookAHoliday = (roomNumber, flightNumber) => ({
  type: 'BookAHoliday',
  roomNumber,
  flightNumber,
})
const handleBookAHoliday = [BookARoom, BookAFlight]
domainPerspective.handle(BookARoom, (actor, action, { domain }) =>
  domain.bookRoom(action.roomNumber)
)
webbAppPerspective.handle(BookARoom, (actor, action, { browser }) =>
  browser.go(`http://blah/${action.roomNumber}`)
)

domainPerspective.handle(BookAHoliday, handleBookAHoliday)
webbAppPerspective.handle(BookAHoliday, handleBookAHoliday)
// last two lines can be rewritten with a helper as:
handleInPerspectives(
  BookAHoliday,
  [domainPerspective, webbAppPerspective],
  (actor, { roomNumber, flightNumber }) =>
    actor.attempsTo(BookARoom(roomNumber), BookAFlight(flightNumber))
)

const Actor = (perspective, abilities) => {
  attemptsTo: (action) => {
    perspective.lookUpHandler(action.type)(...)
  }
} 

Given('Joe has booked a hotel room', async () => {
  const joe = Actor()
  throughTheDomain(joe).attemptsTo(
    Book.aRoom
  )
})

When('Joe cancels his hotel room', async () => {
  const joe = Actor()
  throughTheWebApp(joe).attemptsTo(
    CancelRoom.bookedBy(joe)
  )
})

Then('Joe should have no bookings', async () => {
  const joe = Actor()

  throughTheWebApp(joe).attemptsTo(
    AssertThat(CurrentBookings.areEmpty)
  )
  // ==
  throughTheWebApp(joe).checksThat(
    CurrentBookings.areEmpty
  )
})


// TODO: map the Book.aRoom task to these lower level tasks to show that tasks are composable
//    Login.withValidCredentials,
//    SearchForRoom.availableWithinNextTwoWeeks
//    BookRoom.fromFirstSearchResult

Puzzles

  • we don't quite now how to express assertions
    • do we just want to use attemptsTo and have commands that have assertions? This might make reporting harder later?
  • is having namespaces for questions important?
  • do we even need questions
  • do we say checks or asserts

FAQs

Package last updated on 23 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc