In this project, we'll implement and thoroughly test our own array-based data structure, a fixed-size circular queue!
An understanding of the following concepts and techniques:
- ADT implementation perspective
- queue ADT (see also java.util.Queue)
- implementing queue as a circular array
- queues with fixed versus growing capacity
- algorithms based on the queue's FIFO policy
- interface-based testing
- stateful property-based testing
- initial exposure to concurrency
In this project, you will have the opportunity to implement a generic queue as a circular array and use this implementation in the context of a typical queue-based application.
Specifically:
- Complete the TODO items in the
FixedArrayQueue
implementation until the tests inTestSimpleQueue
pass. - Complete the main class
SingleQueueService
, which reads successive input lines until EOF and puts them on a queue that the background consumer activity processes. - When running the main class, note that the consumer is set to serve customers at a fixed rate. By entering customers' names at different rates, try to create scenarios where customers arrive infrequently enough for the queue to remain empty, or in such quick succession that the queue becomes full (by pasting several of them at once).
- Complete the TODO items in the
TestSimpleQueueJqwik
test suite until it reflects the stated pre- and postconditions of theSimpleQueue
methods. - Answer the following questions in a separate file
Answers.md
:- Why does
FixedArrayQueue
require an explicit constructor? - What happens when you offer an item to a full
FixedArrayQueue
? - What happens when you poll an empty
FixedArrayQueue
? - What is the time and (extra) space complexity of each of the
FixedArrayQueue
methods? - How exhaustively does the
TestSimpleQueue
test suite test the implementation, both conceptually and in terms of actual coverage? - How exhaustively does the
TestSimpleQueueJqwik
test suite test the implementation, both conceptually and in terms of actual coverage? - What kind of test cases does the
simpleQueueActions
method generate?
- Why does
To run the tests:
mvn verify
To run the main program:
mvn exec:java
- 3.5 completion of items marked TODO in
FixedArrayQueue
and tests passing - 1 completion of
SingleQueueService
and correct behavior - 3.5 completion of items marked TODO in
TestSimpleQueueJqwik
and working - 2 written part
- 1.5 responses to the questions above
- 0.5 grammar, style, formatting
Clearly indicate in your Answers.md
file any extra credit attempted.
- 0.2 add a working CI status badge for your project
- 0.5 apply
checkSimpleQueue
property to different queue capacities - 0.5 add observable data invariant(s) for 0 <= size <= capacity to the
checkSimpleQueue
property - 1 add a
clear
method, which removes all elements in the queue, to interface, impmlementation, and tests