mirror of https://github.com/Ombi-app/Ombi
Merge branch 'develop' of https://github.com/tidusjar/Ombi into develop
commit
8471b74ca8
@ -0,0 +1,4 @@
|
||||
{
|
||||
"projectId": "gms1wj",
|
||||
"baseUrl": "http://localhost:3577"
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "Using fixtures to represent data",
|
||||
"email": "hello@cypress.io",
|
||||
"body": "Fixtures are a great way to mock data for responses to routes"
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
/// <reference types="Cypress" />
|
||||
|
||||
describe('Login Page', function () {
|
||||
it('Invalid Password', function () {
|
||||
cy.visit('/');
|
||||
cy.contains('Sign in');
|
||||
|
||||
cy.get('#inputEmail').type('automation');
|
||||
cy.get('#inputPassword').type('incorrectpw');
|
||||
|
||||
cy.get('[data-test=signinbtn]').click();
|
||||
cy.verifyNotification('Incorrect username');
|
||||
});
|
||||
|
||||
it('Invalid Username', function () {
|
||||
cy.visit('/');
|
||||
cy.contains('Sign in');
|
||||
|
||||
cy.get('#inputEmail').type('bad username');
|
||||
cy.get('#inputPassword').type('incorrectpw');
|
||||
|
||||
cy.get('[data-test=signinbtn]').click();
|
||||
cy.verifyNotification('Incorrect username');
|
||||
});
|
||||
|
||||
it('Correct Login', function () {
|
||||
cy.visit('/');
|
||||
cy.contains('Sign in');
|
||||
|
||||
cy.get('#inputEmail').type('automation');
|
||||
cy.get('#inputPassword').type('password');
|
||||
|
||||
cy.get('[data-test=signinbtn]').click();
|
||||
cy.url().should('include', '/search')
|
||||
});
|
||||
})
|
@ -0,0 +1,198 @@
|
||||
/// <reference types="Cypress" />
|
||||
|
||||
describe('User Management Page', function () {
|
||||
beforeEach(function () {
|
||||
cy.login('automation', 'password');
|
||||
cy.createUser('userToDelete', 'password', [{
|
||||
value: "requestmovie",
|
||||
Enabled: "true",
|
||||
}]);
|
||||
|
||||
cy.createUser('userToEdit', 'password', [{
|
||||
value: "requestmovie",
|
||||
Enabled: "true",
|
||||
}]);
|
||||
|
||||
cy.visit('/usermanagement');
|
||||
});
|
||||
|
||||
it('Loads users table', function () {
|
||||
cy.contains("User Management");
|
||||
cy.contains("Add User To Ombi");
|
||||
});
|
||||
|
||||
it('Creates basic user', function () {
|
||||
cy.get('[data-test=adduserbtn').click();
|
||||
cy.url().should('include', '/user');
|
||||
|
||||
// Setup the form
|
||||
cy.get('#username').type("user1");
|
||||
cy.get('#alias').type("alias1");
|
||||
cy.get('#emailAddress').type("user1@emailaddress.com");
|
||||
cy.get('#password').type("password");
|
||||
cy.get('#confirmPass').type("password");
|
||||
|
||||
// setup the roles
|
||||
cy.contains('Roles').click()
|
||||
cy.get('#labelRequestTv').click();
|
||||
cy.get('#labelRequestMovie').click();
|
||||
|
||||
// submit user
|
||||
cy.get('[data-test=createuserbtn]').click();
|
||||
|
||||
cy.verifyNotification('has been created successfully');
|
||||
|
||||
// Also check if the user is in the table
|
||||
cy.contains('alias1');
|
||||
});
|
||||
|
||||
it('Tries to create user without roles', function () {
|
||||
cy.get('[data-test=adduserbtn').click();
|
||||
cy.url().should('include', '/user');
|
||||
|
||||
// Setup the form
|
||||
cy.get('#username').type("user1");
|
||||
cy.get('#alias').type("alias1");
|
||||
cy.get('#emailAddress').type("user1@emailaddress.com");
|
||||
cy.get('#password').type("password");
|
||||
cy.get('#confirmPass').type("password");
|
||||
|
||||
// submit user
|
||||
cy.get('[data-test=createuserbtn]').click();
|
||||
|
||||
cy.verifyNotification('Please assign a role');
|
||||
|
||||
});
|
||||
|
||||
it('Tries to create user when passwords do not match', function () {
|
||||
cy.get('[data-test=adduserbtn').click();
|
||||
cy.url().should('include', '/user');
|
||||
|
||||
// Setup the form
|
||||
cy.get('#username').type("user1");
|
||||
cy.get('#alias').type("alias1");
|
||||
cy.get('#emailAddress').type("user1@emailaddress.com");
|
||||
cy.get('#password').type("password");
|
||||
cy.get('#confirmPass').type("pass22word");
|
||||
|
||||
// submit user
|
||||
cy.get('[data-test=createuserbtn]').click();
|
||||
|
||||
cy.verifyNotification('Passwords do not match');
|
||||
});
|
||||
|
||||
it('Delete a user', function () {
|
||||
cy.get('#edituserToDelete').click();
|
||||
cy.contains('User: userToDelete');
|
||||
cy.get('[data-test=deletebtn]').click();
|
||||
cy.contains('Are you sure that you want to delete this user?');
|
||||
cy.contains('Yes').click();
|
||||
cy.verifyNotification('was deleted');
|
||||
})
|
||||
|
||||
|
||||
it('Add request limits to a user', function () {
|
||||
cy.get('#edituserToEdit').click();
|
||||
|
||||
cy.contains('Request Limits').click();
|
||||
cy.get('#movieRequestLimit').clear().type(2);
|
||||
cy.get('#musicRequestLimit').clear().type(3);
|
||||
cy.get('#episodeRequestLimit').clear().type(4);
|
||||
|
||||
// submit user
|
||||
cy.get('[data-test=updatebtn]').click();
|
||||
|
||||
cy.verifyNotification('successfully');
|
||||
|
||||
// Verify that the limits are set
|
||||
cy.get('#edituserToEdit').click();
|
||||
cy.contains('Request Limits').click();
|
||||
cy.get('#movieRequestLimit').should('have.attr', 'ng-reflect-model', '2')
|
||||
cy.get('#musicRequestLimit').should('have.attr', 'ng-reflect-model', '3')
|
||||
cy.get('#episodeRequestLimit').should('have.attr', 'ng-reflect-model', '4')
|
||||
|
||||
});
|
||||
|
||||
it('Add notification preferences to user', function () {
|
||||
|
||||
cy.get('#edituserToEdit').click();
|
||||
|
||||
cy.contains('Notification Preferences').click();
|
||||
cy.get('[data-test=Discord]').clear().type("Discord");
|
||||
cy.get('[data-test=Pushbullet]').clear().type("Pushbullet");
|
||||
cy.get('[data-test=Pushover]').clear().type("Pushover");
|
||||
cy.get('[data-test=Telegram]').clear().type("Telegram");
|
||||
cy.get('[data-test=Slack]').clear().type("Slack");
|
||||
cy.get('[data-test=Mattermost]').clear().type("Mattermost");
|
||||
|
||||
// submit user
|
||||
cy.get('[data-test=updatebtn]').click();
|
||||
|
||||
cy.verifyNotification('successfully');
|
||||
|
||||
// Verify that the limits are set
|
||||
cy.get('#edituserToEdit').click();
|
||||
cy.contains('Notification Preferences').click();
|
||||
cy.get('[data-test=Discord]').should('have.attr', 'ng-reflect-model', "Discord");
|
||||
cy.get('[data-test=Pushbullet]').should('have.attr', 'ng-reflect-model', "Pushbullet");
|
||||
cy.get('[data-test=Pushover]').should('have.attr', 'ng-reflect-model', "Pushover");
|
||||
cy.get('[data-test=Telegram]').should('have.attr', 'ng-reflect-model', "Telegram");
|
||||
cy.get('[data-test=Slack]').should('have.attr', 'ng-reflect-model', "Slack");
|
||||
cy.get('[data-test=Mattermost]').should('have.attr', 'ng-reflect-model', "Mattermost");
|
||||
|
||||
});
|
||||
|
||||
it('Modify roles', function () {
|
||||
|
||||
cy.get('#edituserToEdit').click();
|
||||
|
||||
cy.contains('Roles').click();
|
||||
cy.get('#labelRequestMovie').click();
|
||||
cy.get('#labelRequestTv').click();
|
||||
|
||||
// submit user
|
||||
cy.get('[data-test=updatebtn]').click();
|
||||
|
||||
cy.verifyNotification('successfully');
|
||||
|
||||
// Verify that the limits are set
|
||||
cy.get('#edituserToEdit').click();
|
||||
cy.contains('Roles').click();
|
||||
cy.get('#createRequestMovie').should('have.attr', 'ng-reflect-model', 'true');
|
||||
cy.get('#createRequestTv').should('have.attr', 'ng-reflect-model', 'true');
|
||||
cy.get('#createDisabled').should('have.attr', 'ng-reflect-model', 'false');
|
||||
|
||||
});
|
||||
|
||||
it('Update local users info', function () {
|
||||
|
||||
cy.get('#userDropdown').click();
|
||||
cy.get('#updateUserDetails').click();
|
||||
|
||||
cy.url().should('include','/updatedetails');
|
||||
|
||||
cy.get('#emailAddress').clear().type("user11@emailaddress.com");
|
||||
cy.get('#currentPassword').type("password");
|
||||
|
||||
cy.get('[data-test=submitbtn]').click();
|
||||
|
||||
cy.verifyNotification('All of your details have now been updated');
|
||||
});
|
||||
|
||||
it('Update local users info with bad password', function () {
|
||||
|
||||
cy.get('#userDropdown').click();
|
||||
cy.get('#updateUserDetails').click();
|
||||
|
||||
cy.url().should('include','/updatedetails');
|
||||
|
||||
cy.get('#emailAddress').clear().type("user11@emailaddress.com");
|
||||
cy.get('#currentPassword').type("password32113123123");
|
||||
|
||||
cy.get('[data-test=submitbtn]').click();
|
||||
|
||||
cy.verifyNotification('Your password is incorrect');
|
||||
});
|
||||
|
||||
|
||||
});
|
@ -0,0 +1,21 @@
|
||||
describe('Wizard Setup Tests', function() {
|
||||
it('Setup Wizard User', function() {
|
||||
cy.visit('http://localhost:3577/');
|
||||
cy.url().should('include', '/Wizard')
|
||||
|
||||
cy.get('[data-test=nextbtn]').click();
|
||||
|
||||
// Media server page
|
||||
cy.contains('Please choose your media server');
|
||||
cy.get('[data-test=skipbtn]').click();
|
||||
|
||||
// Create user
|
||||
cy.contains('Create the Admin account');
|
||||
cy.get('#adminUsername').type('automation');
|
||||
cy.get('#adminPassword').type('password');
|
||||
|
||||
// Submit user
|
||||
cy.get('[data-test=createuserbtn]').click();
|
||||
cy.contains('Sign in');
|
||||
})
|
||||
})
|
@ -0,0 +1,17 @@
|
||||
// ***********************************************************
|
||||
// This example plugins/index.js can be used to load plugins
|
||||
//
|
||||
// You can change the location of this file or turn off loading
|
||||
// the plugins file with the 'pluginsFile' configuration option.
|
||||
//
|
||||
// You can read more here:
|
||||
// https://on.cypress.io/plugins-guide
|
||||
// ***********************************************************
|
||||
|
||||
// This function is called when a project is opened or re-opened (e.g. due to
|
||||
// the project's config changing)
|
||||
|
||||
module.exports = (on, config) => {
|
||||
// `on` is used to hook into various events Cypress emits
|
||||
// `config` is the resolved Cypress config
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
// ***********************************************
|
||||
// This example commands.js shows you how to
|
||||
// create various custom commands and overwrite
|
||||
// existing commands.
|
||||
//
|
||||
// For more comprehensive examples of custom
|
||||
// commands please read more here:
|
||||
// https://on.cypress.io/custom-commands
|
||||
// ***********************************************
|
||||
//
|
||||
//
|
||||
// -- This is a parent command --
|
||||
// Cypress.Commands.add("login", (email, password) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This is a child command --
|
||||
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This is a dual command --
|
||||
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This is will overwrite an existing command --
|
||||
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
||||
|
||||
Cypress.Commands.add('login', (username, password) => {
|
||||
cy.request({
|
||||
method: 'POST',
|
||||
url: '/api/v1/token',
|
||||
body: {
|
||||
username: username,
|
||||
password: password,
|
||||
}
|
||||
})
|
||||
.then((resp) => {
|
||||
window.localStorage.setItem('id_token', resp.body.access_token)
|
||||
});
|
||||
});
|
||||
|
||||
Cypress.Commands.add('createUser', (username, password, claims) => {
|
||||
cy.request({
|
||||
method: 'POST',
|
||||
url: '/api/v1/identity',
|
||||
body: {
|
||||
UserName: username,
|
||||
Password: password,
|
||||
Claims: claims,
|
||||
},
|
||||
headers: {
|
||||
'Authorization': 'Bearer ' + window.localStorage.getItem('id_token'),
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
Cypress.Commands.add('verifyNotification', (text) => {
|
||||
cy.get('.ui-growl-title').should('be.visible');
|
||||
cy.get('.ui-growl-title').next().contains(text)
|
||||
});
|
@ -0,0 +1,20 @@
|
||||
// ***********************************************************
|
||||
// This example support/index.js is processed and
|
||||
// loaded automatically before your test files.
|
||||
//
|
||||
// This is a great place to put global configuration and
|
||||
// behavior that modifies Cypress.
|
||||
//
|
||||
// You can change the location of this file or turn off
|
||||
// automatically serving support files with the
|
||||
// 'supportFile' configuration option.
|
||||
//
|
||||
// You can read more here:
|
||||
// https://on.cypress.io/configuration
|
||||
// ***********************************************************
|
||||
|
||||
// Import commands.js using ES2015 syntax:
|
||||
import './commands'
|
||||
|
||||
// Alternatively you can use CommonJS syntax:
|
||||
// require('./commands')
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue