Git Product home page Git Product logo

sauce-labs's Introduction

Your notes for us

Place any details about your implementation and usage of your app here.


General

What to do?

Sauce Labs offers a variety of real devices in the cloud. Users can request available devices to remotely run their tests on them.

The goal of this challenge is to build a simple UI that displays some details about the devices and shows which of them are currently available.

Please make sure to fulfill the Acceptance Criteria when implementing the User Stories listed below.

We are looking forward to your submission. :)

How much time?

48 hours. We know you have other duties. We want you to have enough time to comfortably complete this challenge.

Any questions?

Feel free to contact us.

Acceptance Criteria

  • Create a good user experience. We want to provide our users with interfaces which are simple, useable and good-looking. Please do not use style libraries. Be creative. Add your own styling.
  • Write your own components. We prepared this scaffold for you. We believe it comes with everything necessary to complete the tasks. You can use other libaries than the pre-installed ones for API requests, data handling etc., but do not use ready-made components. We included a few scripts and utilities as documented below under Available Scripts and Available Utilities. We suggest to follow the Ducks file structure.
  • Write tests. All components and containers should be covered by unit tests. You may use the pre-installed libraries Chai, Enzyme and Sinon, but feel free to choose what fits your needs.

User Stories

Please implement the following user stories based on the acceptance criteria described in the section above.

1. As a user, I want to see an overview of all real devices that Sauce Labs offers

Mock endpoints to retrieve data for two different data centers:

  • http://localhost:3004/eu-devices
  • http://localhost:3004/us-devices

An image for each device can be found at:

  • https://d3ty40hendov17.cloudfront.net/device-pictures/{descriptorId}.png

2. As a user, I want to filter devices by operating system

Allow the user to choose between all operating systems, only Android and only iOS.

3. As a user, I want to see which devices are currently available

Periodically refresh the status of the displayed devices.

Mock endpoints to retrieve data for the two data centers:

  • http://localhost:3004/eu-availability
  • http://localhost:3004/us-availability

4. As a user, I want to see a loading indicator whenever data is being fetched from the server

Display an animated indicator.

Available Scripts

In the project directory, you can run the following commands.

npm install

Installs dependencies.

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

npm run server:start

Starts the mock server.

npm test

Launches the test runner in the interactive watch mode.
See the documentation about running tests for more information.

Available Utilities

You may use the following utilites to avoid writing boilerplate code.

createConstants

import { createConstants } from '../utils/constant';

// Without the utility
export const NAMESPACE = 'manual';
export const STACKTAB_TOGGLE = `${NAMESPACE}/STACKTAB_TOGGLE`;
export const STACKTAB_OPEN = `${NAMESPACE}/STACKTAB_OPEN`;
export const STACKTAB_CLOSE = `${NAMESPACE}/STACKTAB_CLOSE`;

// Usage of the utility
export const NAMESPACE = 'manual';
export const STACKTAB = createConstants(NAMESPACE, 'stacktab')(
  'TOGGLE',
  'OPEN',
  'CLOSE',
);

// This will generate:
// {
//   TOGGLE: 'manual/STACKTAB_TOGGLE',
//   OPEN: 'manual/STACKTAB_OPEN',
//   CLOSE: 'manual/STACKTAB_CLOSE',
// }

createApiConstants

import { createApiConstants } from '../utils/constant';

// Without the utility
export const NAMESPACE = 'manual';
export const SESSION_GET_REQUEST = `${NAMESPACE}/SESSION_GET_REQUEST`;
export const SESSION_GET_SUCCESS = `${NAMESPACE}/SESSION_GET_SUCCESS`;
export const SESSION_GET_FAILURE = `${NAMESPACE}/SESSION_GET_FAILURE`;

// Usage of the utility
export const NAMESPACE = 'manual';
export const SESSION_GET = createApiConstants(NAMESPACE, 'session_get');

// This will generate:
// {
//   REQUEST: 'manual/SESSION_GET_REQUEST',
//   SUCCESS: 'manual/SESSION_GET_SUCCESS',
//   FAILURE: 'manual/SESSION_GET_FAILURE',
// }

createAction

For more info regarding action structure check flux standard action.

import { createAction } from '../utils/action';

// Without the utility
const openStacktab = (payload) => ({
  type: constants.STACKTAB_OPEN,
  payload,
});

// Usage of the utility
const openStacktab = createAction(constants.STACKTAB_OPEN);

createErrorAction

import { createErrorAction } from '../utils/action';

// Without the utility
const removeSessionFailure = (payload) => ({
  type: constants.SESSION_REMOVE_FAILURE,
  payload,
  error: true,
});

// Usage of the utility
const removeSessionFailure = createErrorAction(constants.SESSION_REMOVE_FAILURE);

createApiAction

This utility helps only with super simple api calls

import { createApiAction } from '../utils/action';
import { createApiConstants } from '../utils/constant';

// Without the utility
const getSessionRequest = () => ({
  type: constants.SESSION_GET_REQUEST,
});

const getSessionSuccess = (payload, record) => ({
  type: constants.SESSION_GET_SUCCESS,
  payload,
  record,
});

const getSessionFailure = (payload, record) => ({
  type: constants.SESSION_GET_FAILURE,
  payload,
  record,
});

const getSession = (payload) => (dispatch) => {
  dispatch(getSessionRequest());

  return api.getSession(payload).then(
    ({ data }) => dispatch(getSessionSuccess(data)),
    (error) => {
      dispatch(getSessionFailure(error));
      throw error;
    },
  );
};

// Usage of the utility
const constants = createApiConstants('session_get', 'manual') // <- this should be imported from constants file
const getSession = createApiAction(constants, (payload) => api.getSession(payload));

This project was bootstrapped with Create React App.

sauce-labs's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.