Skip to content
Snippets Groups Projects
Commit 670a2783 authored by VIktorGrev's avatar VIktorGrev
Browse files

test: Adding test to leaderboard

parent 49ed038e
No related branches found
No related tags found
1 merge request!36Test/components
Pipeline #277751 failed
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
<tbody id="line">`</tbody> <tbody id="line">`</tbody>
<tbody v-if="!userInLeaderboard"> <tbody v-if="!userInLeaderboard">
<tr></tr> <tr></tr>
<tr v-for="(entry, index) in leaderboardExtra" :key="entry.user.id" :class="{ 'is-user-5': entry.user.firstName === 'User' }"> <tr v-for="(entry, index) in leaderboardExtra" :key="entry.user.id" :class="{ 'is-user-5': entry.user.firstName === userStore.firstname }">
<td class="number">{{ entry.rank }}</td> <td class="number">{{ entry.rank }}</td>
<td class="name" @click="navigateToUserProfile(entry.user.id)">{{ entry.user.firstName }}</td> <td class="name" @click="navigateToUserProfile(entry.user.id)">{{ entry.user.firstName }}</td>
<td class="points">{{ entry.score }}</td> <td class="points">{{ entry.score }}</td>
......
import { describe, it, expect, beforeEach, vi } from 'vitest';
import { mount } from '@vue/test-utils';
import { createRouter, createMemoryHistory } from 'vue-router';
import { createPinia, setActivePinia } from 'pinia';
import Leaderboard from '@/components/LeaderboardComponents/Leaderboard.vue';
import { useUserInfoStore } from '@/stores/UserStore';
import router from '@/router/index';
describe('Leaderboard', () => {
let wrapper, store, mockRouter;
const leaderboard = [
{ user: { id: 1, firstName: 'Alice', email: 'alice@example.com' }, rank: 1, score: 50 },
{ user: { id: 2, firstName: 'Bob', email: 'bob@example.com' }, rank: 2, score: 45 }
];
const leaderboardExtra = [
{ user: { id: 3, firstName: 'Charlie', email: 'charlie@example.com' }, rank: 1, score: 40 }
];
beforeEach(() => {
setActivePinia(createPinia());
store = useUserInfoStore();
store.$state = { email: 'alice@example.com' }; // Setting initial state
mockRouter = createRouter({
history: createMemoryHistory(),
routes: router.getRoutes(),
});
router.beforeEach((to, from, next) => {
const isAuthenticated = store.accessToken;
if (to.matched.some(record => record.meta.requiresAuth) && !isAuthenticated) {
next({ name: 'login' });
} else {
next();
}
});
wrapper = mount(Leaderboard, {
props: { leaderboard, leaderboardExtra },
global: {
plugins: [mockRouter],
stubs: ['router-link', 'router-view']
}
});
});
it('renders all entries from the leaderboard and leaderboardExtra props', () => {
const rows = wrapper.findAll('tbody > tr');
expect(rows.length).toBe(2);
});
it('correctly determines if the user is in the leaderboard', () => {
expect(wrapper.vm.userInLeaderboard).toBe(true);
});
it('shows the gold medal image only for the first entry', () => {
const medals = wrapper.findAll('.gold-medal');
expect(medals.length).toBe(1); // Only the first entry should have a gold medal
});
it('applies the is-user-5 class based on user firstName', () => {
store.$state.firstname = 'User'; // Change state to match the condition
expect(wrapper.find('.is-user-5').exists()).toBe(false); // Check if the class is applied
});
});
<script setup lang="ts"> <script setup lang="ts">
import { ref } from "vue";
import { useRouter } from "vue-router"; import { useRouter } from "vue-router";
import { useUserInfoStore } from "../../stores/UserStore"; import { useUserInfoStore } from "../../stores/UserStore";
...@@ -8,8 +9,15 @@ let cardTitles = ["Spain tour", "Food waste", "Coffee", "Concert", "New book", " ...@@ -8,8 +9,15 @@ let cardTitles = ["Spain tour", "Food waste", "Coffee", "Concert", "New book", "
let points = 0; let points = 0;
let streak = 0; let streak = 0;
let firstname = ref("");
let lastname = ref("");
const router = useRouter();
const userStore = useUserInfoStore();
firstname.value = userStore.firstname;
lastname.value = userStore.lastname;
const router = useRouter()
const toRoadmap = () => { const toRoadmap = () => {
router.push('/'); router.push('/');
}; };
...@@ -35,7 +43,7 @@ const toUpdateUserSettings = () => { ...@@ -35,7 +43,7 @@ const toUpdateUserSettings = () => {
</button> </button>
</div> </div>
<div class="ms-3" style="margin-top: 130px;"> <div class="ms-3" style="margin-top: 130px;">
<h1>Andy Horwitz</h1> <h1>{{ firstname }} {{ lastname }}</h1>
</div> </div>
</div> </div>
<div class="p-4 text-black" style="background-color: #f8f9fa;"> <div class="p-4 text-black" style="background-color: #f8f9fa;">
......
import { describe, it, expect, vi } from 'vitest'; import { describe, it, expect, beforeEach } from 'vitest';
import { mount } from '@vue/test-utils'; import { mount } from '@vue/test-utils';
import DashboardComponent from '@/components/UserProfile/UserProfileLayout.vue'; // Update with your actual import import { createRouter, createMemoryHistory } from 'vue-router';
import { createPinia, setActivePinia } from 'pinia';
// Correctly mocking 'vue-router' import { useUserInfoStore } from '@/stores/UserStore';
vi.mock('vue-router', async (importOriginal) => { import MyComponent from '@/components/UserProfile/UserProfileLayout.vue'; // Adjust path as needed
const actual = await importOriginal(); // Import the actual vue-router module import router from '@/router/index'; // Adjust path as needed
return { import { access } from 'fs';
...actual, // Spread all exports
// Optionally override specific exports if needed describe('MyComponent and Router Tests', () => {
}; let store, mockRouter;
});
describe('DashboardComponent', () => { beforeEach(() => {
// Now you can import and use createRouter and createWebHistory // Create a fresh Pinia and Router instance before each test
const { createRouter, createWebHistory } = require('vue-router'); setActivePinia(createPinia());
store = useUserInfoStore();
mockRouter = createRouter({
history: createMemoryHistory(),
routes: router.getRoutes(),
});
router.beforeEach((to, from, next) => {
const isAuthenticated = store.accessToken;
if (to.matched.some(record => record.meta.requiresAuth) && !isAuthenticated) {
next({ name: 'login' });
} else {
next();
}
});
const router = createRouter({
history: createWebHistory(),
routes: [{ path: '/', name: 'home' }, { path: '/update-user', name: 'update-user' }]
}); });
it('renders correctly', () => { describe('Component Rendering', () => {
const wrapper = mount(DashboardComponent, { it('renders MyComponent correctly with data from the store', () => {
global: { // Mock user information
plugins: [router] store.setUserInfo({ firstname: 'Jane', lastname: 'Doe', accessToken: 'thisIsATestToken' });
}
const wrapper = mount(MyComponent, {
global: {
plugins: [mockRouter],
},
});
// Check for text or elements that depend on user info
expect(wrapper.text()).toContain('Jane');
expect(wrapper.text()).toContain('Doe');
}); });
});
// Check if the component renders describe('Navigation Guards', () => {
expect(wrapper.find('.container').exists()).toBe(true); it('redirects an unauthenticated user to login when accessing a protected route', async () => {
expect(wrapper.find('h1').text()).toBe('Andy Horwitz'); // Simulate the user being unauthenticated
expect(wrapper.findAll('.card').length).toBeGreaterThan(0); // Checks if any cards are rendered store.$patch({ accessToken: '' });
router.push('/profile');
await router.isReady();
expect(router.currentRoute.value.name).toBe('login');
});
it('allows an authenticated user to visit a protected route', async () => {
store.$patch({ accessToken: 'valid-token' }); // Token is present
mockRouter.push('/profile');
await mockRouter.isReady();
expect(mockRouter.currentRoute.value.name).toBe('profile');
});
}); });
it('navigates to roadmap page', async () => { describe('UserStore Actions', () => {
const wrapper = mount(DashboardComponent, { it('updates user information correctly', () => {
global: { store.setUserInfo({ firstname: 'John', lastname: 'Smith' });
plugins: [router]
} expect(store.firstname).toBe('John');
expect(store.lastname).toBe('Smith');
}); });
await router.isReady(); // Wait for router to be ready it('clears user information correctly', () => {
await wrapper.find('.stretched-link').trigger('click'); // Simulate clicking the link that calls toRoadmap store.setUserInfo({ firstname: 'John', lastname: 'Smith', accessToken: 'thisIsATestToken'});
expect(router.currentRoute.value.path).toBe('/'); store.clearUserInfo();
expect(store.firstname).toBe('');
expect(store.lastname).toBe('');
expect(store.accessToken).toBe('');
});
}); });
}); });
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment