id
int64
776k
1.81M
name
stringlengths
18
45
type
stringclasses
1 value
problem_statement
stringlengths
1.05k
6.2k
project_url
stringlengths
122
130
sub_type
stringclasses
12 values
test_command
stringclasses
7 values
testcases
stringlengths
149
2.7k
testcase_files
stringclasses
7 values
total_testcases
int64
1
17
776,090
React: Cyclic Counter
fullstack
Overview In this task , the goal is to build a simple cyclic counter component . The component must be rendered as <button> with text content corresponding to the current count . Initially , the count is always 0. The component receives a prop cycle defining the counting cycle . After the component is clicked with the ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/81c5im1sb5n/stack/81c5im1sb5n/c1664bc920b2ef0e609b3b1894e6f7a6.zip
reactjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "junit.xml", "name": "Testing for cycle length 1", "type": "junit", "weight": 0.001}, {"file": "junit.xml", "name": "Testing for cycle length 2", "type": "junit", "weight": 0.249}, {"file": "junit.xml", "name": "Testing for cycle length 3", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Test...
['junit.xml']
5
776,608
React: Text Editor
fullstack
Overview In this task , the goal is to build a very simple text editor . User Interface Elements The project is initially filled with boilerplate code with the following elements in the interface . Their properties and behavior must be defined asgiven . Each of these elements must have the given data-testid property , ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/bf1d60a8a9s/stack/bf1d60a8a9s/5f3fbe80ee65c8b2e14e9dc7e0411483.zip
reactjs
npm test
[{"file": "junit.xml", "name": "Initial UI renders correctly", "type": "junit", "weight": 0.1111111111111111}, {"file": "junit.xml", "name": "Append button becomes enabled when the word input is non-empty", "type": "junit", "weight": 0.1111111111111111}, {"file": "junit.xml", "name": "Append button becomes disabled whe...
['junit.xml']
9
776,661
React: Filtered Employees List
fullstack
Overview In this task , the goal is to build a very simple list of employees , showing their names only , that can be filtered using a text input . User Interface Elements The project is initially filled with boilerplate code with the following elements in the interface . Their properties and behavior must be defined a...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/1542945flee/stack/1542945flee/82a559cc7b32f2ab9e9a1e1eed91bc38.zip
reactjs
npm test
[{"file": "junit.xml", "name": "Initial UI renders correctly", "type": "junit", "weight": 0.16666666666666666}, {"file": "junit.xml", "name": "Filtering for not matching phrase shows no emplyees", "type": "junit", "weight": 0.16666666666666666}, {"file": "junit.xml", "name": "Filtering for not matching phrase that cont...
['junit.xml']
6
777,461
React: Language Translator
fullstack
Overview In this task , the goal is to build a very simple language translator . This translator takes a translations Map object as a prop , and renders one text input field and one read-only text field for the translation output . Once a translatable word is typed in the input , the corresponding translation is shown ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/232arg5een1/stack/232arg5een1/a1d74d3a74699d3646eff2834aec98ff.zip
reactjs
npm test
[{"file": "junit.xml", "name": "Initial UI renders correctly", "type": "junit", "weight": 0.2}, {"file": "junit.xml", "name": "Test with existing translations", "type": "junit", "weight": 0.2}, {"file": "junit.xml", "name": "Test with non-existing translations", "type": "junit", "weight": 0.2}, {"file": "junit.xml", "n...
['junit.xml']
5
785,170
React: Using APIs - Paginated Articles
fullstack
Overview In this task , the goal is to create a simple application using the JavaScript Fetch API to fetch a paginated list of articles and render their titles on a selected page in an unordered list . User Interface Elements Your task is to complete the implementation of src/components/Articles . js . The file is init...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/8o80s5801t5/stack/8o80s5801t5/4b7d3477d77dcba2da15d7f00d5369b5.zip
reactjs
npm test
[{"file": "junit.xml", "name": "Renders the correct number of page buttons", "type": "junit", "weight": 0.3333333333333333}, {"file": "junit.xml", "name": "Renders articles correctly on app did mount", "type": "junit", "weight": 0.3333333333333333}, {"file": "junit.xml", "name": "Renders articles correctly after page b...
['junit.xml']
3
793,496
React: Sorting Articles
fullstack
Create a basic article sorting application , as shown below . Some core functionalities have already been implemented , but the application is not complete . Application requirements are given below , and the finished application must pass all of the unit tests . Hide animation Show animation The app has one component ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/a0a5h2gti15/files/e44e58b10a86079543ac75e6dff57559/project.zip
reactjs_vm
npm test
[{"file": "junit.xml", "name": "Initial articles render correctly", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Clicking on top renders expected articles", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Clicking on newest renders expected articles", "type": "junit", "weight": 0.25...
['junit.xml']
4
814,675
Angular: Language Translator
fullstack
Create a Language Translator component , as shown below: Hide animation Show animation This component must have the following functionalities: The component receives a prop TRANSLATIONS , which is a Map from input words to their translations . The component renders one text input field and one read-only text output fie...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/7f4d3qc2ane/stack/e17kid0p9k4/46ddb05935c5f4bbc846a386150816ef.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "LanguageTranslator Test with non-existing translation followed by existing translations", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "LanguageTranslator Initial UI is rendered as expected", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "LanguageTranslato...
['unit.xml']
5
814,719
Angular: Filtered Employees List
fullstack
Create a Filtered Employees List component , as shown below: Hide animation Show animation The component must have the following functionalities: The component receives a prop employees , which is an array of Employee objects , where each object contains a single property name denoting the name of that employee . The c...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/7ej5qe8oflc/stack/ghdrliidcbc/5fd37b73e6a766208c3be514829202a1.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "FilteredEmployees Sequencing - filter with matching string, then with no matching string, then with matching string", "type": "junit", "weight": 0.125}, {"file": "unit.xml", "name": "FilteredEmployees Filtering for no matching phrase when search string contains name as substring", "type":...
['unit.xml']
8
821,564
Node.js Express: Recipes Pagination
fullstack
Your company is creating a new Recipe Management app . As the NodeJS developer in the company , you have been given the task to write a basic Express app that fetches the Recipe list from a data-store . The request to the route /recipes returns all the paginated recipes with default values of page and limit . The query...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/f69am57qasl/files/d6c19e92c3760b23c7fca971b3c17ba6/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "express_recipes_pagination Should return 200 for /recipes with default pagination", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "express_recipes_pagination Should respond with correct data when only page is set in query", "type": "junit", "weight": 0.1666...
['unit.xml']
6
821,568
Node.js Express: Recipe Filter
fullstack
Your company is creating a new Recipe Management app . As the NodeJS developer in the company , you have been given the task to write a basic Express app that automatically creates shopping lists from the Recipes array . The request to the route /recipes/shopping-list ? ids returns a list of all the aggregated ingredie...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/d6apgemg1lc/files/dfb0fce8465d5aea581768167fc094f3/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "express_recipes_filters Should return 400 for /recipes/shopping-list if no ids are passed in query", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "express_recipes_filters Should respond back with a 404 if none of the ids match", "type": "junit", "weight": 0.25}, {"file":...
['unit.xml']
4
821,574
Node.js Express: Pagination Middleware
fullstack
Your company is creating a new Recipe Management app . As the NodeJS developer in the company , you have been given the task to write an Express middleware that has to standardize the query , search , and projection parameters for all the endpoints . The middleware should parse the query parameter from the URL and crea...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/bcf79pkalq1/files/69062890fcb0a69285ece4da64036837/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "express_pagination_middleware Should have the context object in the request", "type": "junit", "weight": 0.14285714285714285}, {"file": "unit.xml", "name": "express_pagination_middleware Should have property id, timestamp, path in trace object", "type": "junit", "weight": 0.14285714285714...
['unit.xml']
7
821,579
Node.js Express: Find Recipe Step
fullstack
Your company is creating a new Recipe Management app . As the NodeJS developer in the company , you have been given the task to write a basic Express app that has a single route for fetching a single recipe's current step-index based on the elapsedTime passed as input . The request to the route /recipes/step/:id ? elap...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/6ratfp5ccab/files/1f920626544e1643913fd4aeee58629c/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "express_recipes_routes Should return 400 for /recipes/step/:id if id is not valid", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "express_recipes_routes Should respond with 0 if elapsed time is 0", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "express_r...
['unit.xml']
4
821,588
Node.js: Order Processing
fullstack
An eCommerce company is growing rapidly , and stock management is becoming a bottleneck . As the NodeJS developer in the company , you have been given the task to write an Order-Processing Script that takes the order data as input , performs a few pre-order checks/validations , and returns the result . If any line-item...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/2sedj91ba92/files/73ed3b77b437151d33bb380e23ad90de/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "order_processor \"before each\" hook for \"Should have all the method placeOrder in the class\"", "type": "junit", "weight": 0.5}, {"file": "unit.xml", "name": "order_processor \"after each\" hook for \"Should have all the method placeOrder in the class\"", "type": "junit", "weight": 0.5}...
['unit.xml']
6
821,724
Angular: Text Editor
fullstack
Create a simple Text Editor component , as shown below: Hide animation Show animation The component should have following functionalities- The input should initially be empty . The user can type any text into this input field to append to the output text . Clicking on the 'Append' button should extract the text typed i...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/gaag9dg4kh6/stack/93ris1gqr76/70c8a7ca7c270352c94b4f06475d0a80.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "TextEditor Clicking on append should add the text to the output", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "TextEditor Appending after undo appends correctly", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "TextEditor Mu...
['unit.xml']
6
821,751
Angular: Top and Newest Articles
fullstack
Create an Articles List component that toggles the order of the articles , as shown below: Hide animation Show animation The component should have the following functionalities: The component receives a prop articles , which is an array of objects , where each object has 3 properties: string title , integer upvotes , a...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/6719j2p0jrq/stack/f27cmrjdtrq/7ab90ab1baa117448a3ecf6cd8e88a5d.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "ArticlesList Initial articles render correctly", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "ArticlesList Clicking on newest renders expected articles", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "ArticlesList Clicking on top renders top articles", ...
['unit.xml']
4
821,926
Angular: Cyclic Counter
fullstack
Create a Cyclic Counter component , as shown below: Hide animation Show animation The component should have the following functionalities: The component receives a prop cycle , defining the counting cycle . The component should render a <button> element displaying the text content corresponding to the current count . I...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/30fcj585sid/stack/45h2l701f8d/4a7b9e8b35de08cb8520dce71d5d9ee7.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "CyclicCounter Initial UI is rendered as expected", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "CyclicCounter Testing for cycle length 2", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "CyclicCounter Testing for cycle lengt...
['unit.xml']
6
822,789
Node.js: Bank Transactions
fullstack
As the NodeJS developer in your company , you have been given the task to write a BankTransactionScript that creates a bank account and allows the user to perform credit and debit transactions . Class Description Create a module , account . js , and implement the following set of functionalities: The file should export...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/e28559rfo8m/files/2da2439a3d7e07424fbac0f915ea52ce/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "account_events Should emit the event INSUFFICIENT_BALANCE when a debit event is emitted", "type": "junit", "weight": 0.5}, {"file": "unit.xml", "name": "account_events \"after each\" hook for \"Should emit the event INSUFFICIENT_BALANCE when a debit event is emitted\"", "type": "junit", "...
['unit.xml']
5
823,177
Node.js: Async Search
fullstack
As the NodeJS developer in the company , you have been given the task to write an Asynchronous SearchScriptthat takes a search term as input and returns the count of the matching objects or throws an error if the search was unsuccessful . Class Description Create a module , search . js , and implement the following set...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/gapnh7fi0a1/files/22c2db0fbb422a90cc634e5c55d3e4d6/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "async-search \"before each\" hook for \"Should emit the event SEARCH_STARTED when the search starts\"", "type": "junit", "weight": 0.5}, {"file": "unit.xml", "name": "async-search \"after each\" hook for \"Should emit the event SEARCH_STARTED when the search starts\"", "type": "junit", "w...
['unit.xml']
4
823,438
Node.js Express: Dynamic Router
fullstack
Your company wants to create a new routing framework based on ExpressJS that allows developers to perform file-based routing . A new route can be simply added to the app by creating a new file in the pages folder . The framework reads the pages directory and generates a set of dynamic routes that can be added to Expres...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/74ti7j86k3t/files/98e75b711243821a59ec964de79a5b15/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "express_fancy_router Should create a valid route tree for the base path", "type": "junit", "weight": 0.14285714285714285}, {"file": "unit.xml", "name": "express_fancy_router Should create a valid route tree for a dynamic file", "type": "junit", "weight": 0.14285714285714285}, {"file": "un...
['unit.xml']
7
830,781
React: Slideshow App
fullstack
Create a basic slideshow application , as shown below . Application requirements are given below , and the finished application must pass all of the unit tests . Hide animation Show animation Your task is to complete the implementation of src/components/Slides . js according to the following requirements: The Slides co...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/fora32amot/files/964a28c617ce889a4f5d9c819480dc9a/project.zip
nodejs18_15__reactjs
npm test
[{"file": "junit.xml", "name": "App renders correctly", "type": "junit", "weight": 0.5}, {"file": "junit.xml", "name": "Switching between slides works as expected", "type": "junit", "weight": 0.5}]
['junit.xml']
2
830,922
React: Autocorrection App
fullstack
Create a basic autocorrection application per the requirements below . The finished application must pass all of the unit tests . Hide animation Show animation Complete the implementation of src/components/AutocorrectTextarea . js according to the following requirements: AutocorrectTextareais a component that takes a c...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/fq3ndjp3cnd/files/c7d85966dadfd55ee3c43e45507ef91e/project.zip
nodejs18_15__reactjs
npm test
[{"file": "junit.xml", "name": "Test without removing characters", "type": "junit", "weight": 0.5}, {"file": "junit.xml", "name": "Test with removing characters", "type": "junit", "weight": 0.5}]
['junit.xml']
2
834,599
Angular: Temperature Converter
fullstack
Create a Temperature Converter component , as shown below: Hide animation Show animation The component should have the following functionalities: It has 2 input number fields . The first is for a Celsius value , and the second is for a Fahrenheit value . Initially , both fields are empty . As a value is typed into the ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/7km300bdplr/stack/84dikbenplr/3d9ab3b32ab9d9c75fe8c6db53b92554.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "TemperatureConverter Typing value in Fahrenheit field gets correct Celsius value", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "TemperatureConverter Typing value in Celsius field gets correct Fahrenheit value", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name"...
['unit.xml']
5
834,944
Angular: Weather Component
fullstack
Create a Weather Details component , as shown below: Hide animation Show animation The component must have the following functionalities: An array of objects is passed as a prop to the component , where each object is a weather record for a single city . The object has 4 properties: name: The name of the city . [STRING...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/96t2fag443g/stack/gn1hhmgisgq/3d593c30ccf3ac0dfcc8f56b3742aebe.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "WeatherDetails Perform series of actions", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "WeatherDetails Test with non-existing cities", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "WeatherDetails Initial UI is rendered as expected", "type": "junit", "w...
['unit.xml']
4
840,893
Angular: Dark Theme Switcher
fullstack
Create a dark theme blogapplication , as shown below . Some core functionalities have already been implemented , but the application is not complete . Application requirements are given below , and the finished application must pass the unit tests . Hide animation Show animation The app has twocomponents: the Blog comp...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/5i7bib8bh79/files/f856d9516833f3163e2d75d282ef88ae/project.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "AppComponent Should switch theme correctly on subsequent button clicks", "type": "junit", "weight": 0.3333333333333333}, {"file": "unit.xml", "name": "AppComponent Should render the blog posts and the button on the screen", "type": "junit", "weight": 0.3333333333333333}, {"file": "unit.xm...
['unit.xml']
3
901,370
Angular: Survey List
fullstack
Create a Survey Listapp , as shown below: Hide animation Show animation There are 2 components in the app: Filters component: A reusable component thatis used to define the filters for the final survey list to be rendered . It accepts the filter type and the list of filter values as input , and outputs the selected fil...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/8b1n75be0pt/stack/1reltlrmrfs/a0ea89b951443e752b9929c1111193c6.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "AppComponent Combination of filters works", "type": "junit", "weight": 0.125}, {"file": "unit.xml", "name": "AppComponent Clicking on a category twice render the entire list", "type": "junit", "weight": 0.125}, {"file": "unit.xml", "name": "AppComponent Clicking on \"Hardware\" category f...
['unit.xml']
8
901,920
Angular: Paginated Football Competitions
fullstack
Create a Football Competitions component , as shown below: Hide animation Show animation The goals are to get a paginated list of football competitions and render their details in a list . The component must have the following functionalities: The component must get competitions by making an API GET call to URL ' https...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/8r9f4n9kg2d/stack/5a3fsri2bj3/f7fc62153748128b374181621e4165ea.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "FootballCompetitions Should show correct results when page 3 is clicked", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "FootballCompetitions Should show correct results when page 2 is clicked", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "FootballCompe...
['unit.xml']
4
902,167
Angular: Weather Finder
fullstack
Create a Weather Finder component , as shown below: Hide animation Show animation The component must have the following functionalities: The input should initially be empty . The user can type acity name into this input box to search for weather details for this city . Clicking on the 'Search' button should make an API...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/c7c2qsa4o2g/stack/2ps7pj79ifq/4e257f0aa3b22d50d3def1fbdd7f9c2b.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "WeatherFinder Should show No Results Found when there are no results from API", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "WeatherFinder Should search and render the data - 1", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "WeatherFinder Should search a...
['unit.xml']
5
902,629
Angular: Length Converter
fullstack
Create a Length Converter component , as shown below: Hide animation Show animation The component should have the following functionalities: It has 2 input set . Each input set has the following: An input field to type the number which has a label defining unit of measurement selected . A dropdown that has 3 options - ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/7f4dj57nip5/stack/a8e2675ob1p/d8e3ef3072254eae1ae813307db92ea2.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "LengthConverter Typing value in Metres field gets correct Metres value", "type": "junit", "weight": 0.1111111111111111}, {"file": "unit.xml", "name": "LengthConverter initial UI is rendered as exptected", "type": "junit", "weight": 0.1111111111111111}, {"file": "unit.xml", "name": "Length...
['unit.xml']
9
906,065
NodeJS: Products Publish API
fullstack
In this challenge , your task is to implement a simple REST API to manage a collection of products . Each product is a JSON entry with the following keys: id : The unique product ID . (Integer) name : The name of the product . (String) price : The selling price of the product .(Float) mrp : The maximum retail price of ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/1almq2qhn04/files/54bf75919fed7634fd81e594ef91d978/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "products_api_medium should create a new product", "type": "junit", "weight": 0.09090909090909093}, {"file": "unit.xml", "name": "products_api_medium should create a new products without the published field", "type": "junit", "weight": 0.09090909090909093}, {"file": "unit.xml", "name": "pr...
['unit.xml']
11
906,396
NodeJS: Analytics Ingestion API
fullstack
In this challenge , your task is to implement a simple REST API to manage a collection of the high-volume event streams . Each event is a JSON entry with the following keys: id : The unique entry ID . (Integer) eventType : The type of event data entry . Can be one of 'click' or 'pageView'. (String) user : The unique us...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/5g6ct491pc8/files/e464ee680940efbd54b340dff9d9a5d8/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "analytics_api_medium should ingest all the data correctly", "type": "junit", "weight": 0.125}, {"file": "unit.xml", "name": "analytics_api_medium should avoid duplicated and return all the ingested events correctly", "type": "junit", "weight": 0.125}, {"file": "unit.xml", "name": "analyti...
['unit.xml']
8
906,829
Angular: User Lists
fullstack
Create a User Lists app as shown below: Hide animation Show animation There are 2 components in the app: DataForm component: This component is used to add a new item of either the Song or Book type to the list . DataList component: A reusable component that is used to render the list of Songs and the list of Books . Ac...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/gecen8th0sh/stack/7pofpsc8fbr/e396faee64de058314ca7c56355eaebb.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "AppComponent Clicking on type Song and Add button should clear the input fields", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "AppComponent Perform a series of operations including delete", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.x...
['unit.xml']
6
907,010
Angular: Product Comparison
fullstack
Create a Product Comparison component as shown below: Hide animation Show animation The component should have following functionalities: The product information is passed to the component as props . An exampleproduct object is: { laptopName: ""Dell 14 3000 Core i3 7th Gen"", laptopImage: ""/assets/images/image1. jpeg""...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/8agg15hep7q/stack/3e6snr1s57q/8cf5c8447c618a8bca04749c51c5dc70.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "ProductComparison Should render correct message when only 1 product selected", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "ProductComparison Should render the Initial UI correctly", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "ProductComparison Perform...
['unit.xml']
5
907,822
Angular: Blog Posts
fullstack
Create a Blog Posts module as shown below: Hide animation Show animation The module should have the following functionalities: The module should have 3routes - Nav item 'Create Post' should navigate tohome route '/' which loads CreatePost component . Nav item 'Draft Posts' should navigate to the route '/drafts' which l...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/4dkt4f71dmn/stack/a8t9enq972n/272a5b3e2472bfa4ad16bc3676174ee9.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "AppComponent Perform series of actions", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "AppComponent Published drafts reflect on clicking of Published Posts nav and route is correct", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "AppComponent Saved drafts ...
['unit.xml']
5
907,914
NodeJS: Medical Records Module
fullstack
As a NodeJS developer in your company , you have been given the responsibility to create a medical records manager module that fetches the records from an external API and uses these records to provide insights within the time limits specified . Implement the module records . js such that it has the following set of fu...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/aiir5okfhd4/files/bf379e7880e0519390565544bb29b922/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "rest_api_external_medical_records \"before each\" hook for \"should initialise the records on init\"", "type": "junit", "weight": 1.0}]
['unit.xml']
1
907,928
Angular: Form Validation
fullstack
Create a Form Validation component as shown below: Hide animation Show animation The component should perform the following validations in the form: The name input field should pass following validations . In case of error , the appropriate message should be shown in <div data-test-id=""name-input-error""></div>. The f...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/f37rmckkhdk/stack/7bhmsbl1knk/1e82ad739332765ac1bdb372f62f844a.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "FormValidation Validation email example.com is forbidden works", "type": "junit", "weight": 0.1111111111111111}, {"file": "unit.xml", "name": "FormValidation Button should be enabled when both inputs are correct and no errors should be shown", "type": "junit", "weight": 0.1111111111111111...
['unit.xml']
9
907,933
ExpressJS: Authorization Middleware
fullstack
Your company is launching a task manager app soon . The team has already created an ExpressJS app with several routes for creating and managing tasks . As the NodeJS developer in your company , you are required to write an Authorization middleware to provide access to some routes based on the role of the user . The mid...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/eskmfitrbh3/files/3da10d3aef536f8dd2541bfe72aa5111/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "express_authorization_middleware Should send a 403 if the x-role header is not present", "type": "junit", "weight": 0.14285714285714285}, {"file": "unit.xml", "name": "express_authorization_middleware Should send a 200 for a non-protected route", "type": "junit", "weight": 0.1428571428571...
['unit.xml']
7
908,482
Angular: Document Validation
fullstack
Create a Document Validation component as shown below: Hide animation Show animation The component should perform the following validations for a document form: The title input field should pass the following validations . In case of error , the appropriate message should be shown in <div data-test-id=""title-input-err...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/96dpjth2cbr/stack/2nr8rbbc18h/a6ef48f793f30c3b8583b5e12ba17e4d.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "DocumentValidation Validation password pattern works - 3", "type": "junit", "weight": 0.07692307692307693}, {"file": "unit.xml", "name": "DocumentValidation Validation password pattern works - 4", "type": "junit", "weight": 0.07692307692307693}, {"file": "unit.xml", "name": "DocumentValid...
['unit.xml']
13
908,528
Angular: Task Tracker
fullstack
Create a Task Tracker module as shown below: Hide animation Show animation The module should have the following functionalities: The module should have 4 routes - Nav item 'Create Task' should navigate to the home route'/' which loads the CreateTask component . Nav item 'Active' should navigate to theroute '/active' wh...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/gbq8gghfgm6/stack/ebcg3d51efg/33f52e0a64e06b197e4acdfeec6707af.zip
angularjs_vm
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "AppComponent Perform series of actions", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "AppComponent Other tasks reflect on clicking on Others nav and route is correct", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "AppComponent Completed tasks reflect on ...
['unit.xml']
5
908,739
NodeJS: Reminders API
fullstack
In this challenge , your task is to implement a simple REST API to manage a collection of reminders . Each product is a JSON entry with the following keys: id : The unique reminder ID . (Integer) user : The unique user ID . (Integer) description : The description of the reminder(String) date : The date of the reminder ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/660pj3ge1rg/files/403bbeb5c951d69420e7870bd052cf2f/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "reminders_api should create a new reminder", "type": "junit", "weight": 0.08333333333333333}, {"file": "unit.xml", "name": "reminders_api should fetch all the reminders", "type": "junit", "weight": 0.08333333333333333}, {"file": "unit.xml", "name": "reminders_api should fetch no reminders...
['unit.xml']
12
909,060
NodeJS: Blog Posts API
fullstack
In this challenge , your task is to implement a simple REST API to manage a collection of blog posts . Each post is a JSON entry with the following keys: id : The unique post ID . (Integer) author : The unique user ID . (Integer) title : The title of the Blog Post (String) isPublished : The boolean field denoting if th...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/9n6op2o10hb/files/cf57965a597a840b78682b89df080485/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "blog_posts_api_medium should create a published post", "type": "junit", "weight": 0.07692307692307693}, {"file": "unit.xml", "name": "blog_posts_api_medium should create an unpublished post", "type": "junit", "weight": 0.07692307692307693}, {"file": "unit.xml", "name": "blog_posts_api_med...
['unit.xml']
13
909,065
NodeJS: API Aggregator Service
fullstack
In this challenge , your task is to implement an ExpressJS based API Aggregator service . The goal to communicate with various APIs , accumulate the responses and return a consolidated transformed response . The app accepts a single request to the endpoint /users/:userName . The response to be returned should be fetche...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/5c4f0dk0snd/files/01ff6e603b42e897bffec87f981c10d6/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "aggregator_service should fetch the details for a user", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "aggregator_service should fetch the count of transactions for the user", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "a...
['unit.xml']
6
909,381
NodeJS: Parking Spot
fullstack
As a NodeJS developer in your company , you have been given the responsibility to create an application that maintains the Car Parking Slots of the company . Implement the module parking . js such that the application has following set of functionalities: The file should export a class Parking as the default export of ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/93rjd6ihd6a/files/cc5b19890e4cee9725f65cc7f2a8d673/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "parking_slot \"before each\" hook for \"Should have all the methods in the class\"", "type": "junit", "weight": 0.5}, {"file": "unit.xml", "name": "parking_slot \"after each\" hook for \"Should have all the methods in the class\"", "type": "junit", "weight": 0.5}]
['unit.xml']
8
909,605
NodeJS: Editor History
fullstack
As a NodeJS developer in your company , you have been given the responsibility to create an image editor history stack that processes and accumulates the updates passed to it and flushes the updates at a fixed interval asynchronously . Implement the module history . js such that it has following set of functionalities:...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/25ii0ha7kms/files/00a3dc833559273fe445e4d0ab6c79ed/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "editor_history_stack \"before each\" hook for \"Should have all the methods in the class\"", "type": "junit", "weight": 0.5}, {"file": "unit.xml", "name": "editor_history_stack \"after each\" hook for \"Should have all the methods in the class\"", "type": "junit", "weight": 0.5}]
['unit.xml']
8
909,946
NodeJS: Rate Limiter Middleware
fullstack
As the NodeJS developer in your company , you are required to write an ExpressJS Rate Limiting middleware to throttle the API traffic for the app to make sure that the app runs at full efficiency . The middleware should implement the following functionalities: Implement the rate-limiter . js middleware module . The mod...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/2nr8rocm2s8/files/2b8123bbb796a0c6ce4258488e0f9623/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "express_rate_limit_middleware should have the rate limit remaining header in the response", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "express_rate_limit_middleware should allow the request until the window limit has been reached", "type": "junit", "wei...
['unit.xml']
6
942,595
Angular: Company Validation
fullstack
Create a Company Form Validation component as shown below: Hide animation Show animation The component should perform the following validations for a company form: The Company title input field is required . The messageshould be rendered only when the field is not valid , so on app load , it should not be rendered . Th...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/ag2l57r4s3n/stack/5opgc5llt73/1d5495cddad984570ed43ad80dda3c12.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "CompanyValidation Validation that title's min length should be 3 works", "type": "junit", "weight": 0.1111111111111111}, {"file": "unit.xml", "name": "CompanyValidation Validation that title is required works", "type": "junit", "weight": 0.1111111111111111}, {"file": "unit.xml", "name": "...
['unit.xml']
9
943,724
Angular: Product Validation
fullstack
Create a Product Form Validation component as shown below: Hide animation Show animation The component should perform the following validations for a product form: The Product name input field is required . A messageshould be rendered only when the field is not valid , soon app load , it should not be rendered . The fi...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/2ijgfnmlda/stack/8g45tk0rfqk/3e332657baa92eb8a4fa70905013d59c.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "ProductValidation Validation that name's min length should be 3 works", "type": "junit", "weight": 0.125}, {"file": "unit.xml", "name": "ProductValidation Validation that name is required works", "type": "junit", "weight": 0.125}, {"file": "unit.xml", "name": "ProductValidation Button sho...
['unit.xml']
8
944,191
Angular: Flight Search
fullstack
Create a Flight Search component , as shown below: Hide animation Show animation Thecomponent must have the following functionalities: The component receives a prop , flightOptions , which is an array of flightobjects . The flight object has the following interface: interface FlightDetail { source: string; destination:...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/7bhn53m9jcj/stack/d7qi07ji4t9/a02ff463f003114da416f123367d0757.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "FlightSearch Flight search works as expected - search 2", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "FlightSearch initial UI is rendered as exptected", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "FlightSearch Flight search works as expected - search ...
['unit.xml']
5
944,399
Angular: Order Directory
fullstack
Create an Order Directory module as shown below: Hide animation Show animation The module should have the following functionalities: The module has 2 components: OrderDirectory component OrderForm component The app has a service namedApp Service which can be used to store the list of Orders globally . The interface for...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/21gk7ethbp2/stack/4h7k37cchbm/3b73d0f66de5766b899be9c36e8cd71a.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "AppComponent Perform series of operations", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "AppComponent Updating order in order directory works", "type": "junit", "weight": 0.2}, {"file": "unit.xml", "name": "AppComponent Inputs should reset once order is added", "type": "...
['unit.xml']
5
944,574
Angular: Project Tracker
fullstack
Kanban is a popular workflow used in task management , project management , issue tracking , and for similar purposes . The workflow is usually visualized using a Kanban Board . Create a Project Trackercomponent similar to Kanban with tasks , where each task consists of a name only , as shown below: Hide animation Show...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/v1/3rd7dpblhkc/stack/75eq63l323m/e624acca6d495ef6403df3ac4ea2b8ac.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "ProjectTracker In Initial UI each stage has correct number of tasks", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "ProjectTracker Perform series of operations", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "ProjectTracker ...
['unit.xml']
6
945,334
React: Flight Search
fullstack
Create a Flight Search component , as shown below: Hide animation Show animation Thecomponent must have the following functionalities: The component receives a prop , flightOptions , which is an array of flightobjects . The flight object has the following interface: type FlightDetail { source: string; destination: stri...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/75onntcgh8/files/5db781f49cc9f375de5074d437405838/project.zip
nodejs18_15__reactjs
npm test
[{"file": "junit.xml", "name": "initial UI is rendered as expected", "type": "junit", "weight": 0.2}, {"file": "junit.xml", "name": "Flight search works as expected - search 1", "type": "junit", "weight": 0.2}, {"file": "junit.xml", "name": "Flight search works as expected - search 2", "type": "junit", "weight": 0.2}, ...
['junit.xml']
5
945,550
React: Company Validation
fullstack
Create a Company Form Validation component as shown below: Hide animation Show animation The component should perform the following validations for a company form: The Company title input field is required . An errorshould be rendered only when the value is not valid , so it is not rendered on app load . The field is r...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/ib4723anej/files/76bbf12cee13f9fd77d4e8eb2ae1f513/project.zip
nodejs18_15__reactjs
npm test
[{"file": "junit.xml", "name": "initial UI is rendered as expected", "type": "junit", "weight": 0.2}, {"file": "junit.xml", "name": "Validation that title is required works", "type": "junit", "weight": 0.2}, {"file": "junit.xml", "name": "Validation that employees count is optional works", "type": "junit", "weight": 0....
['junit.xml']
5
945,598
NodeJS: Kanban Board API
fullstack
Implement a REST service that exposes the/boardsendpoint . Each product is a JSON entry with the following keys: id : The unique reminder ID . (Integer) title : The title of the TODO item . (String) stage : The current stage of the item (Integer) Here is an example of a reminder JSON object: { ""id"": 2, ""stage"": 1, ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/ms9dq182mg/files/28a58596d0e421d4ad9c47ba80837e41/project.zip
nodejs18_15
npm test
[{"file": "unit.xml", "name": "kanban_boards_api should create a new item in the board", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "kanban_boards_api should update the stage for the item", "type": "junit", "weight": 0.25}, {"file": "unit.xml", "name": "kanban_boards_api should return with status 40...
['unit.xml']
4
946,212
React: Product Validation
fullstack
Create a Product Form Validation component as shown below: Hide animation Show animation The component should perform the following validations for a product form: The Product name input field is required . This message should be rendered only when the field is not valid , so on app load , it should not be rendered . T...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/2a5ne3sn128/files/d3b470a7e574594a23818f3a5b7ccb80/project.zip
nodejs18_15__reactjs
npm test
[{"file": "junit.xml", "name": "initial UI is rendered as expected", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Validation that name is required works", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Validation that quantity is required works", "type": "junit", "weight": 0.25}, {...
['junit.xml']
4
946,645
React: Text Append
fullstack
Create a Text Append module as shown below: Hide animation Show animation There is a reusable component in the module named TextField : It renders a <label> and an <input> elements . It receives 2 props - labelText - The text to be rendered in <label> element . onChange - The event handler onChange function to be calle...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/faqgl3266ia/files/ce4406d25b259ed774bd2f1caa8157ed/project.zip
nodejs18_15__reactjs
npm test
[{"file": "junit.xml", "name": "initial UI is rendered as expected", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Appended string is correct when First Text input changed", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Appended string is correct when Second Text input changed", "t...
['junit.xml']
4
946,683
React: Employee Information
fullstack
Create an Employee Information module as shown below: Hide animation Show animation There is a reusable component in the module named Dropdown : It renders a <select> element . It receives 3 props: labelText - used to render the default option in the dropdown options - This is an array of strings where each object is r...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/472p5d1bbnp/files/6f081bae81ca053a84c8af7a6a9bc1cb/project.zip
nodejs18_15__reactjs
npm test
[{"file": "junit.xml", "name": "initial UI is rendered as expected", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Country dropdown selection works", "type": "junit", "weight": 0.25}, {"file": "junit.xml", "name": "Language dropdown selection works", "type": "junit", "weight": 0.25}, {"file": "junit....
['junit.xml']
4
1,077,954
Selenium Java: Healthcare Analytics App
fullstack
In this challenge , use the selenium web driver , HtmlUnitDriver , which uses HtmlUnit headless browser . This eliminates the need to set up browsers such as Firefox , Chrome , or web driver executables like FirefoxDriver , or ChromeDriver . Given a URL for a dummy healthcare data analytics web application that shows t...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/ght6gmmr2oo/files/a870415f1f8c2c914e68704e9bfdeed9/project.zip
java17_0__maven
mvn clean test
[{"file": "TEST-com.hackerrank.selenium.HealthcareAnalyticsAppTest.xml", "name": "testFindAmountMismatchedPatients", "type": "junit", "weight": 1.0}]
['TEST-com.hackerrank.selenium.HealthcareAnalyticsAppTest.xml']
1
1,088,330
Ruby on Rails: News Application
fullstack
Implement a simple REST API to manage a collection of news articles . Each article is a JSON entry with the following keys: id : The unique article ID . (Integer) title : The title of the article . (String) content : The content of the article . (String) author : Name of the author of the article . (String) category : ...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/ehfe5nidapo/files/95a4f6736f5fa27321307e71f2dfe08f/project.zip
ruby3_2__rails
bin/bundle install && RAILS_ENV=test bin/rails db:migrate && RAILS_ENV=test bin/bundle exec rspec
[{"file": "report.xml", "name": "News API DELETE /articles/:id returns status 405", "type": "junit", "weight": 0.058823529411764705}, {"file": "report.xml", "name": "News API GET /articles returns status 200", "type": "junit", "weight": 0.058823529411764705}, {"file": "report.xml", "name": "News API GET /articles when ...
['report.xml']
17
1,088,484
.NET Core: Library API Service
fullstack
A company is launching a service for library management . The service is a web API layer using . NET , and there is already a prepared infrastructure . Implement 2 controllers . In LibrariesController , implement the DELETE method , and in BooksController , implement the POST , GET , and DELETE methods , per the guidel...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/c1972lag62s/files/9749263411a1a9afad79f737d95887bd/project.zip
dotnet6_0
rm -rf reports && dotnet clean && dotnet restore && dotnet build && dotnet test --logger xunit --results-directory ./reports/
[{"file": "TestResults.xml", "name": "TestAddBook_Ok_GetBook_NotFound", "type": "xunit", "weight": 0.3333333333333333}, {"file": "TestResults.xml", "name": "TestDeleteLibrary", "type": "xunit", "weight": 0.3333333333333333}, {"file": "TestResults.xml", "name": "TestGetBooks_Ok_NotFound", "type": "xunit", "weight": 0.33...
['TestResults.xml']
3
1,093,078
Django REST Framework: Student Management API
fullstack
Implement a simple REST API to manage a collection of student records . Each student record is a JSON entry with the following keys: id : The unique ID of the student . (Integer) firstname : The name of the student . (String) lastname : The last name of the student . (String) dateofbirth : The date of birth of the stud...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/93cd9lf78k3/files/4d42ab30c07606445a24e5ff68b27484/project.zip
python3_11__django
pip install virtualenv && virtualenv env1 && source env1/bin/activate && pip3 install -r requirements.txt && rm -rf unit.xml && python3 manage.py test
[{"file": "unit.xml", "name": "test_student_creation", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "test_get_all_students", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "test_get_retrieve_existing_id", "type": "junit", "weight": 0.16666666666666666}, {"...
['unit.xml']
6
1,434,212
React: Custom Countdown timer
fullstack
Create a countdown timer component that increases the time every second , as shown below . The component has the following functionalities: The initial value of the timer should 0. Display the time value in seconds only . The timer starts on clicking the Start button . It should increase the time every second . The tim...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/9tp264ccbk1/files/8cf9094c0bda286b2866c6c45a98b51e/project.zip
reactjs14_vm
npm test
[{"file": "junit.xml", "name": "initial value of timer should be 0 set via props", "type": "junit", "weight": 0.125}, {"file": "junit.xml", "name": "should start the timer on clicking the start button", "type": "junit", "weight": 0.125}, {"file": "junit.xml", "name": "should reset the value to 0 on clicking the reset b...
['junit.xml']
8
1,454,058
Angular: Dark Theme Switcher
fullstack
Create a dark theme blogapplication , as shown below . Some core functionalities have already been implemented , but the application is not complete . Application requirements are given below , and the finished application must pass the unit tests . The app has twocomponents: the Blog component and the Theme Switcher c...
https://hrx-projects.s3.amazonaws.com/fullstack/questions/v1/e3o0moln8nj/stack/e3o0moln8nj/784d8d3fad35859b20aed34aa5c45898.zip
angularjs
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test
[{"file": "unit.xml", "name": "AppComponent Should render the blog posts and the button on the screen", "type": "junit", "weight": 0.3333333333333333}, {"file": "unit.xml", "name": "AppComponent Clicking on the theme switcher should enable the dark theme", "type": "junit", "weight": 0.3333333333333333}, {"file": "unit....
['unit.xml']
3
1,455,832
Spring Boot: Filter Microservice
fullstack
Implement REST APIs to perform filter and sort operations on a collection of Products . Each event is a JSON entry with the following keys: barcode : the unique id of the product (String) price : the price of the product (Integer) discount : the discount % available on the product(Integer) available : the availability ...
https://hrx-projects.s3.amazonaws.com/fullstack/questions/v1/9f327o43mak/stack/9f327o43mak/5e893449ac2c8fb0f6704b0900f204af.zip
java_spring_boot
mvn clean test
[{"file": "TEST-com.hackerrank.sample.SampleApplicationTests.xml", "name": "FilterPrice1", "type": "junit", "weight": 0.2}, {"file": "TEST-com.hackerrank.sample.SampleApplicationTests.xml", "name": "FilterPriceCheck2", "type": "junit", "weight": 0.2}, {"file": "TEST-com.hackerrank.sample.SampleApplicationTests.xml", "n...
['TEST-com.hackerrank.sample.SampleApplicationTests.xml']
5
1,774,629
Spring Boot: App Testing
fullstack
In UserController , there are two completed CRUD endpoints for the User entity . Provide unit tests for the two endpoints: GET request to /api/users: Return the list of users and status code 200. In UserControllerTest , add at least 1 test to verify the endpoint . POST request to /api/users: Create a new user in an in-...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/acg5h9limom/files/b1bdf1e367c7389f160ec64bbe91099e/project.zip
java_spring_boot
.eval/score.sh
[{"file": "TEST-com.hackerrank.eval.FunctionalTests.xml", "name": "whenUserCreatedCorrectResponseReturned", "type": "junit", "weight": 0.03125}, {"file": "TEST-com.hackerrank.eval.FunctionalTests.xml", "name": "whenRetrievingListOfUsersCorrectResponseReturned", "type": "junit", "weight": 0.03125}, {"file": "TEST-com.ha...
['TEST-com.hackerrank.eval.FunctionalTests.xml', 'TEST-com.hackerrank.eval.TestCoverageTests.xml']
12
1,783,520
NodeJS: Weighted Load Balancer
fullstack
Implement a weighted load balancer that distributes incoming requests to a set of backend servers based on their weights . The load balancer should ensure that servers with higher weights receive more requests relative to their weights compared to servers with lower weights . An object with the following keys represent...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/7n8f15a3fn5/files/11c4b2b10721eaa60146da9bc6cbc097/project.zip
nodejs18_15__reactjs
npm test
[{"file": "unit.xml", "name": "Weighted load balancer - should distribute requests according to weights", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xml", "name": "Weighted load balancer - should handle requests with single server", "type": "junit", "weight": 0.16666666666666666}, {"file": "unit.xm...
['unit.xml']
6
1,810,885
Ruby on Rails: Job Board Application
fullstack
Create a robust Rails-based job board application designed to facilitate job seekers and employers in managing their recruitment needs efficiently . The application offers a comprehensive set of features through RESTful APIs , including user authentication , job listing management , job application submissions with fil...
https://istreet-proctor.s3.amazonaws.com/fullstack/questions/cpktcj02qen/files/de16a9b5abd88cde102a8b645020da7d/project.zip
ruby3_2__rails
bin/bundle install && RAILS_ENV=test bin/rails db:migrate && RAILS_ENV=test bin/bundle exec rspec
[{"file": "report.xml", "name": "Api::JobApplications POST #create with invalid attributes returns an unprocessable entity status", "type": "junit", "weight": 0.06666666666666667}, {"file": "report.xml", "name": "Api::JobApplications POST #create with invalid attributes does not create a new job application", "type": "...
['report.xml']
15