-
Notifications
You must be signed in to change notification settings - Fork 4
DateTimeUtils Testing
The idea is to test the DateTimeUtils
to check if the prettified easily readable date and time strings returned by DateTimeUtils
class functions are returned properly.
The plan is to test all the public static functions that are exposed by the DateTimeUtils.java
.
This involves:-
- Testing edge case dates
Sample Code: Testing getVerboseDate
function edge case inputs, and check if the function still returns the date in a prettified verbose format.
time = LocalDateTime.parse("9999-12-30T23:59:59.63");
res = DateTimeUtils.getVerboseDate(time);
assertEquals("Thursday, December 30, 9999", res);
time = LocalDateTime.parse("2018-12-30T11:59:59.63");
res = DateTimeUtils.getVerboseDate(time);
assertEquals("Sunday, December 30, 2018", res);
// Test for one digit date
time = LocalDateTime.parse("2018-12-03T11:59:59.63");
res = DateTimeUtils.getVerboseDate(time);
assertEquals("Monday, December 3, 2018", res);
// Test for 5 letter months
time = LocalDateTime.parse("2018-03-03T11:59:59.63");
res = DateTimeUtils.getVerboseDate(time);
assertEquals("Saturday, March 3, 2018", res);
time = LocalDateTime.parse("2018-04-03T11:59:59.63");
res = DateTimeUtils.getVerboseDate(time);
assertEquals("Tuesday, April 3, 2018", res);
// Test for 3 letter month
time = LocalDateTime.parse("2018-05-01T11:59:59.63");
res = DateTimeUtils.getVerboseDate(time);
assertEquals("Tuesday, May 1, 2018", res);
// Test for 4 letter month
time = LocalDateTime.parse("2018-06-30T11:59:59.63");
res = DateTimeUtils.getVerboseDate(time);
assertEquals("Saturday, June 30, 2018", res);
- Testing current date and time
Sample Code: Testing getVerboseDate
function which returns the date in a prettified verbose format.
// Testing the logic for current time
time = LocalDateTime.now();
res = DateTimeUtils.getVerboseDate(time);
// Extracting week day and capitalizing it
String weekDay = time.getDayOfWeek().toString().toLowerCase();
weekDay = weekDay.substring(0, 1).toUpperCase() + weekDay.substring(1);
// Extracting month and capitalizing it
String month = time.getMonth().toString().toLowerCase();
month = month.substring(0, 1).toUpperCase() + month.substring(1);
// Extracting year
String year = String.valueOf(time.getYear());
// Extracting day
String day = String.valueOf(time.getDayOfMonth());
// Constructing the date string to be in the expected format
String expectedStr = weekDay + ", " + month + " " + day + ", " + year;
// Testing it against the one returned from DateTimeUtils
assertEquals(expectedStr, res);
-
Issues Detected and Resolved: The verbose date returned came in a reverse order on Windows and Macbook, but not on Debian based Linux distros. This bug was detected through the comprehensive tests written in
DateTimeUtils.java
and then fixed so that the game shows the prettified date and time in the same format across operating systems.
- There are some repetitive patterns in the code which Team 7 will aim to reduce in Sprint 4. So refactoring this test will be picked up as a task.
Camera Angle and The Player's Perspective
Achievements Trophies and Cards
πΎ Obstacle/Enemy
βMonster Manual
βObstacles/Enemies
ββ- Alien Plants
ββ- Variation thorns
ββ- Falling Meteorites
ββ- FaceHugger
ββ- AlienMonkey
βSpaceship & Map Entry
βParticle effect
[code for debuff animations](code for debuff animations)
Main Character Movement, Interactions and Animations - Code Guidelines
ItemBar & Recycle system
πΎ Obstacle/Enemy
βObstacle/Enemy
βMonster Manual
βSpaceship Boss
βParticle effects
βOther Related Code
βUML & Sequence diagram of enemies/obstacles
Scoring System Implementation Explanation
Buff and Debuff Implementation
Infinite generating terrains Implementation Explanation
Game Over Screen and functions explaination
Buffer timer before game start
Rocks and woods layout optimization
Magma and nails code implementation
Guide: Adding Background music for a particular screen
History Scoreboard - Score Details
Listening for important events in the Achievements ecosystem
Hunger and Thirst icon code guidelines
Hunger and Thirst User Testing
Buff and Debuff Manual User Testing
The New Button User Test in Setting Page
The Main Menu Buttons User Testing
Infinite loop game and Terrain Testing
https://github.com/UQdeco2800/2021-ext-studio-2.wiki.git
πΎ Obstacle/Enemy
βObstacle testing
ββ- Alien Plants & Variation Thorns
ββ- Falling Meteorites
βEnemy testing
ββ- Alien Monkeys & Facehugger
ββ- Spaceship Boss
βMonster Manual
βParticle-effect
βPlayer attack testing
ββ- Player Attack
Sprint 1
Sprint 2
Sprint 3
Sprint 4
Changeable background & Buffer time testing
Game over screen test sprint 4
New terrain textures on bonus map test sprint 4
Achievements System, Game Records and Unlockable Chapters
Musics Implementation Testing plan