Implementation of the WeeSVC application using Ruby and [Rails]](https://rubyonrails.org/).
The following external libraries were directly utilized in this project.
Package | Link | Description |
---|---|---|
Ruby | https://www.ruby-lang.org/ | Well...it's obvious isn't it?! |
Rails | https://rubyonrails.org/ | Framework for modern web applications |
Puma | https://puma.io/ | Web server for executing your Rails application |
SQLite | https://www.sqlite.org/index.html | The lightweight database |
Builds are performed using the Rakefile
provided in the project root.
In order to buid from the command-line, you'll need to have Ruby (3.0+) and Rails (6.1.4+) installed on your system.
☝️ NOTE: To initially build the project, you may need to run the rake
command to install the tools utilized for builds.
Once built, you can migrate the database scripts and run the application:
$ rails db:setup; rails db:migrate; rails server
For those who do not have the Ruby and Rails dependencies installed locally, Docker is an option to build the application and run the application within a container.
To execute the Rails application, use the following Docker command to create your image:
docker build -t github.com/weesvc/weesvc-rails:0.0.1-SNAPSHOT .
Once the the image is available, you can simply run the provided script which will open a browser to access the service at http://localhost:3000/api/hello .
$ ./docker-run.sh
☝️ NOTE: the docker-run.sh
script is setup to not maintain state between executions. This means each
time you start the container, you will be starting with a freshly created database.
☝️ TIP: Use the very cool HTTPie application for testing locally from the command-line.
Execute a GET
command to retrieve the available places from the database.
$ http GET :3000/api/places
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
[]
Add a place into the database using a POST
command.
$ http POST :3000/api/places name=NISC description="NISC Lake St. Louis Office" latitude:=38.7839 longitude:=90.7878
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"created_at": "2021-11-14T19:07:38.049Z",
"description": "NISC Lake St. Louis Office",
"id": 1,
"latitude": 38.7839,
"longitude": 90.7878,
"name": "NISC",
"updated_at": "2021-11-14T19:07:38.049Z"
}
Run the GET
command again to retrieve places which now include your newly added place!
$ http GET :3000/api/places
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
[
{
"created_at": "2021-11-14T19:10:32.042Z",
"description": "NISC Lake St. Louis Office",
"id": 1,
"latitude": 38.7839,
"longitude": 90.7878,
"name": "NISC",
"updated_at": "2021-11-14T19:10:32.042Z"
}
]
Use the PATCH
command to update a specific value. For example we'll update the Description
as follows:
$ http PATCH :3000/api/places/1 description="Lake St. Louis"
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"created_at": "2021-11-14T19:10:32.042Z",
"description": "Lake St. Louis",
"id": 1,
"latitude": 38.7839,
"longitude": 90.7878,
"name": "NISC",
"updated_at": "2021-11-14T19:13:16.232Z"
}
This returns the newly "patched" version of the place. Next we'll remove the row using the DELETE
method.
$ http DELETE :3000/api/places/1
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"message": "Place successfully deleted."
}
A core requirement for all WeeSVC implementations is to implement the same API which are utilized for benchmark comparisons. To ensure compliance with the required API, k6 is utilized within the Workbench project.
To be a valid service, the following command MUST pass at 100%:
k6 run -e PORT=3000 https://raw.githubusercontent.com/weesvc/workbench/main/scripts/api-compliance.js