evolvable-by-design / dialog-flow

Testing out the Google Auth Library OAuth2 and Dialogflow APIs in a chatbot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dialog Flow

Dialog Flow is an application developed by lauchness. It implements one API change (see details below) that I use as a use-case to evaluate the evolvable-by-design approach that I created.

In this repository, the evolvable-by-design approach is implemented. Other projects are used as use cases, see the evolvable-by-design organization.

Repositories

Here is a list of all the repositories linked to this use-case.

Amount of changes: 1

Type of change: change model of returned data (n°3)

Change 1: change returned model

Description of the change: do an API change (change returned model) while moving the API call to the server, see UI commit (https://github.com/lauchness/dialog-flow/commit/929dd1f84dde381d2e393a5f76a34cf95112054f) and server commit (https://github.com/lauchness/dialog-flow-server/commit/2b8b301d4909a6dbbbbda674ebe20989956118e2)

Description of the work done:

  1. Fork both the client and the server
  2. Remove the model change from the API to create a first version returning a model that is equal to the model previously used on the frontend (see server commit)
  3. Create the API documentation and serve it from the backend on OPTIONS {baseApiUrl}/ (see the three commits: b2dd491, e3cc2ba and c53c7a2)
  4. Modify the frontend to use the first version of the API (see frontend commit)
  5. Create the proper accounts on Google Cloud Console and Google API Console to get the dialog flow API credentials
  6. Implement the evolvable-by-design approach into the frontend, in a single commit
  7. Replay the API evolution (see server commit)
  8. Verify that the client code does not need to be modified in order to continue working -> SUCCESS

Report

  • How many evolutions? ➜ 1
  • Types of evolutions ➜ change type of return value (n°3)
  • One or several commits? ➜ 1
  • How many lines per commit for the original evolution? ➜ 2 (for a 721 lines program)
  • How many lines of code to implement the approach on the frontend? ➜ 43 lines changed
  • One or several developers ➜ 1
  • If tests, broken? ➜ no tests
  • Covered or not covered? Covered

How to test the evolution

  1. Clone the server repository
  2. Go back to the commit before the evolution git checkout before-evolution
  3. Start the server npm start
  4. Clone this repository, install the dependencies (yarn install) and then start it (yarn start)
  5. Play with it
  6. Stop the server ctrl + c in the bash session
  7. Move to the server commit implementing the evolution git checkout after-evaluation
  8. Start the server back npm start
  9. Refresh the frontend and play with it, it is still working while the code has not changed

Original README detailing how to use the embedded node scripts

This project was bootstrapped with Create React App.

Available Scripts

In the project directory, you can run:

yarn 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.

yarn test

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

yarn build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

yarn eject

Note: this is a one-way operation. Once you eject, you can’t go back!

If you aren’t satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

Learn More

You can learn more in the Create React App documentation.

To learn React, check out the React documentation.

Code Splitting

This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting

Analyzing the Bundle Size

This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size

Making a Progressive Web App

This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app

Advanced Configuration

This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration

Deployment

This section has moved here: https://facebook.github.io/create-react-app/docs/deployment

yarn build fails to minify

This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify

About

Testing out the Google Auth Library OAuth2 and Dialogflow APIs in a chatbot


Languages

Language:JavaScript 93.6%Language:HTML 6.4%