GithubHelp home page GithubHelp logo

phone-booking's Introduction

How to run?

Start Zookeeper

$ cd kafka
$ bin/zookeeper-server-start.sh config/zookeeper.properties

Start Kafka

$ cd kafka
$ bin/kafka-server-start.sh config/server.properties

Start the application

$ cd phone_booking
$ gradle bootRun

Request examples

List devices

$ curl localhost:8080/device/list | jq .

Response

[
  {
    "id": 1,
    "version": 0,
    "availability": "AVAILABLE",
    "bookingTs": null,
    "bookedBy": null,
    "model": {
      "id": 1,
      "name": "S9",
      "manufacturer": {
        "id": 1,
        "name": "Samsung"
      }
    },
    "available": true
  },
  {
    "id": 2,
    "version": 399,
    "availability": "BOOKED",
    "bookingTs": "2023-12-12T12:35:39.791+00:00",
    "bookedBy": "alice",
    "model": {
      "id": 2,
      "name": "S8",
      "manufacturer": {
        "id": 1,
        "name": "Samsung"
      }
    },
    "available": false
  },

Book device

$ curl -u alice:alice -X PUT -s localhost:8080/device/2/book | jq .
{
  "id": 2,
  "version": 401,
  "availability": "BOOKED",
  "bookingTs": "2023-12-12T12:42:04.971+00:00",
  "bookedBy": "alice",
  "model": {
    "id": 2,
    "name": "S8",
    "manufacturer": {
      "id": 1,
      "name": "Samsung"
    }
  },
  "available": false
}

Release device

$ curl -u alice:alice -X PUT -s localhost:8080/device/2/release | jq .
{
  "id": 2,
  "version": 400,
  "availability": "AVAILABLE",
  "bookingTs": null,
  "bookedBy": null,
  "model": {
    "id": 2,
    "name": "S8",
    "manufacturer": {
      "id": 1,
      "name": "Samsung"
    }
  },
  "available": true
}

Integration test

$ ./concurrent_updates.py
Device id=2 was booked successfully
Failed to book device id=2: Device with id=2 already booked by someone else
Device id=2 was released successfully
Failed to release device id=2: Device with id=2 already booked by someone else
Device id=2 was released successfully
Device id=2 was released successfully
Device id=2 was booked successfully
Failed to book device id=2: Device with id=2 updated concurrently, retry please
Failed to release device id=2: Device with id=2 already booked by someone else
Device id=2 was released successfully
Device id=2 was booked successfully
Failed to book device id=2: Device with id=2 updated concurrently, retry please
Failed to release device id=2: Device with id=2 already booked by someone else

phone-booking's People

Watchers

Vladimir Loshchin 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.