Browse Source

Merge pull request #910 from 01-edu/ascii-art-web-stylize-subject-01-274

taking care of issue in public regarding testing in the project
content-update
LEEDASILVA 3 years ago committed by GitHub
parent
commit
7f8705d3ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      subjects/ascii-art-web/export-file/README.md
  2. 4
      subjects/ascii-art-web/stylize/audit.md
  3. 7
      subjects/groupie-tracker/README.md
  4. 14
      subjects/groupie-tracker/audit/README.md

1
subjects/ascii-art-web/export-file/README.md

@ -30,7 +30,6 @@ As you already learned from the previous project you must create a new HTTP endp
This project will help you learn about :
- The basics of export formats :
- Portable Document Format (pdf)
- Text File (txt)
- [Here are some more examples](https://en.wikipedia.org/wiki/Document_file_format)
- [HTTP headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers)

4
subjects/ascii-art-web/stylize/audit.md

@ -22,10 +22,6 @@
###### +Is the output of the program well structured? Is the output aligned, without any letter out of line?
###### +Is there a test file for this code?
###### +Are the tests checking each possible case?
###### +Does the code obey the [good practices](../../good-practices/README.md)?
#### Social

7
subjects/groupie-tracker/README.md

@ -14,10 +14,11 @@ Groupie Trackers consists on receiving a given API and manipulate the data conta
- And the last one, `relation`, does the link between all the other parts, `artists`, `dates` and `locations`.
- Given all this you should build a user friendly website where you can display the bands info through several data visualizations (examples : blocks, cards, tables, list, pages, graphics, etc). It is up to you to decide which info you will present and how you will display it.
- Given all this you should build a user friendly website where you can display the bands info through several data visualizations (examples : blocks, cards, tables, list, pages, graphics, etc). It is up to you to decide how you will display it.
- This project also focuses on the creation of events and on their visualization.
- This project also focuses on the creation of events/actions and on their visualization.
- The event/action we want you to do is known as a client call to the server (client-server). We can say it is a feature of your choice that needs to trigger an action. This action must communicate with the server in order to recieve information, ([request-response])(https://en.wikipedia.org/wiki/Request%E2%80%93response)
- An event consists in a system that responds to some kind of action triggered by the client, time, or any other factor.
### Instructions
@ -42,4 +43,4 @@ This project will help you learn about :
- [JSON](https://www.json.org/json-en.html) files and format.
- HTML.
- Event creation and display.
- [Events](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events).
- [Client-server](https://developer.mozilla.org/en-US/docs/Learn/Server-side/First_steps/Client-Server_overview).

14
subjects/groupie-tracker/audit/README.md

@ -2,9 +2,13 @@
###### Has the requirement for the allowed packages been respected? (Reminder for this project: only [standard packages](https://golang.org/pkg/))
###### Is the data from the artists being used?
###### Is the data from the `artists` being used?
###### Is data from the relations being used?
###### Is the data from the `locations` being used?
###### Is the data from the `dates` being used?
###### Is data from the `relations` being used?
##### Try to see the "members" for the artist/band `"Queen"`
@ -58,9 +62,9 @@
###### Does it present the right members as above?
##### Try to trigger an event using some kind of action (ex: Clicking the mouse over a certain element, pressing a key on the keyboard, resizing or closing the browser window, a form being submitted, an error occurring, etc).
##### Try to trigger an event/action using some kind of action (ex: Clicking the mouse over a certain element, pressing a key on the keyboard, resizing or closing the browser window, a form being submitted, an error occurring, etc).
###### Does the event responds as expected?
###### Does the event/action responds as expected?
###### Did the server behaved as expected?(did not crashed)
@ -70,8 +74,6 @@
###### Are all the pages working? (Absence of 404 page?)
###### Does the project handle [HTTP status 400 - Bad Requests](https://kinsta.com/knowledgebase/400-bad-request/#causes)?
###### Does the project handle [HTTP status 500 - Internal Server Errors](https://www.restapitutorial.com/httpstatuscodes.html)?
###### Is the communication between server and client well established?

Loading…
Cancel
Save