1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-24 17:04:43 +00:00
Files
wrestlingdev.com/cypress-tests/cypress/e2e/06-match_score_controller.cy.js

178 lines
6.8 KiB
JavaScript

describe('Match Score Controller Tests', () => {
// Don't fail tests on uncaught exceptions
Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from failing the test
return false;
});
beforeEach(() => {
// Use cy.session() with the login helper
cy.session('authUser', () => {
cy.login(); // Assume cy.login() is defined in commands.js
});
cy.visit('/');
cy.contains('Browse Tournaments').first().click();
cy.contains('Cypress Test Tournament - Pool to bracket').click();
// Wait for page to load and intercept mat clicks to handle Turbo transitions
cy.intercept('GET', '/mats/*').as('loadMat');
cy.contains('a', 'Mat 1').first().click();
cy.wait('@loadMat');
// Ensure the page has fully loaded
cy.get('body', { timeout: 10000 }).should('be.visible');
});
it('should validate winner\'s score is higher than loser\'s score', () => {
// Only attempt this test if the match_win_type element exists
cy.get('body').then(($body) => {
if ($body.find('#match_win_type').length) {
// Select Decision win type
cy.get('#match_win_type').select('Decision');
// Ensure dynamic score input is loaded before proceeding
cy.get('#dynamic-score-input').should('be.visible');
// Enter invalid scores (loser > winner)
cy.get('#winner-score').clear().type('3');
cy.get('#loser-score').clear().type('5');
// Validation should show error
cy.get('#validation-alerts').should('be.visible')
.and('contain.text', 'Winner\'s score must be higher than loser\'s score');
// Submit button should be disabled
cy.get('#update-match-btn').should('be.disabled');
// Correct the scores
cy.get('#winner-score').clear().type('6');
cy.get('#loser-score').clear().type('3');
// Still should require a winner selection
cy.get('#validation-alerts').should('be.visible')
.and('contain.text', 'Please select a winner');
// Select a winner
cy.get('#match_winner_id').select(1);
// Validation should pass
cy.get('#validation-alerts').should('not.be.visible');
cy.get('#update-match-btn').should('not.be.disabled');
} else {
cy.log('Match form not present - test conditionally passed');
}
});
});
it('should validate win type based on score difference', () => {
// Only attempt this test if the match_win_type element exists
cy.get('body').then(($body) => {
if ($body.find('#match_win_type').length) {
// Select a winner first to simplify testing
cy.get('#match_winner_id').select(1);
// 1. Decision (1-7 point difference)
cy.get('#match_win_type').select('Decision');
cy.wait(500);
// Ensure dynamic score input is loaded before proceeding
cy.get('#dynamic-score-input').should('be.visible');
// Valid Decision score
cy.get('#winner-score').clear().type('5');
cy.get('#loser-score').clear().type('2');
// Should pass validation
cy.get('#validation-alerts').should('not.be.visible');
cy.get('#update-match-btn').should('not.be.disabled');
// 2. Try score that should be Major
cy.get('#winner-score').clear().type('10');
cy.get('#loser-score').clear().type('2');
// Should show validation error
cy.get('#validation-alerts').should('be.visible')
.and('contain.text', 'Win type should be Major');
cy.get('#update-match-btn').should('be.disabled');
// 3. Change win type to Major
cy.get('#match_win_type').select('Major');
cy.wait(500);
// Should pass validation
cy.get('#validation-alerts').should('not.be.visible');
cy.get('#update-match-btn').should('not.be.disabled');
// 4. Try Tech Fall score range
cy.get('#winner-score').clear().type('17');
cy.get('#loser-score').clear().type('2');
// Should show validation error
cy.get('#validation-alerts').should('be.visible')
.and('contain.text', 'Win type should be Tech Fall');
cy.get('#update-match-btn').should('be.disabled');
// 5. Change to correct win type
cy.get('#match_win_type').select('Tech Fall');
cy.wait(500);
// Should pass validation
cy.get('#validation-alerts').should('not.be.visible');
cy.get('#update-match-btn').should('not.be.disabled');
} else {
cy.log('Match form not present - test conditionally passed');
}
});
});
it('should show/hide appropriate input fields based on win type', () => {
// Only attempt this test if the match_win_type element exists
cy.get('body').then(($body) => {
if ($body.find('#match_win_type').length) {
// 1. Test Decision shows score inputs
cy.get('#match_win_type').select('Decision');
cy.wait(500);
// Ensure dynamic score input is loaded
cy.get('#dynamic-score-input').should('be.visible');
cy.get('#winner-score', { timeout: 5000 }).should('be.visible');
cy.get('#loser-score', { timeout: 5000 }).should('be.visible');
cy.get('#dynamic-score-input').should('not.contain', 'No score required');
// 2. Test Pin shows pin time inputs
cy.get('#match_win_type').select('Pin');
cy.wait(500);
// Ensure dynamic score input is loaded
cy.get('#dynamic-score-input').should('be.visible');
cy.get('#minutes', { timeout: 5000 }).should('be.visible');
cy.get('#seconds', { timeout: 5000 }).should('be.visible');
cy.get('#pin-time-tip').should('be.visible');
// 3. Test Forfeit shows no score inputs
cy.get('#match_win_type').select('Forfeit');
cy.wait(500);
// Ensure dynamic score input is loaded
cy.get('#dynamic-score-input').should('be.visible');
// Instead of checking it's empty, check for "No score required" text
cy.get('#dynamic-score-input').invoke('text').then((text) => {
expect(text).to.include('No score required');
});
// Make sure the score fields are not displayed
cy.get('#dynamic-score-input').within(() => {
cy.get('input#winner-score').should('not.exist');
cy.get('input#loser-score').should('not.exist');
cy.get('input#minutes').should('not.exist');
cy.get('input#seconds').should('not.exist');
});
} else {
cy.log('Match form not present - test conditionally passed');
}
});
});
});