login.cy.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. describe("Login test", () => {
  2. const selector = {
  3. username: "#input",
  4. password: "#normal_login_password",
  5. loginButton: ".ant-btn",
  6. };
  7. it("Login succeeded", () => {
  8. cy.request({
  9. method: "POST",
  10. url: "http://localhost:7001/api/login",
  11. body: {
  12. "application": "app-built-in",
  13. "organization": "built-in",
  14. "username": "admin",
  15. "password": "123",
  16. "autoSignin": true,
  17. "type": "login",
  18. },
  19. }).then((Response) => {
  20. expect(Response).property("body").property("status").to.equal("ok");
  21. });
  22. });
  23. it("ui Login succeeded", () => {
  24. cy.visit("http://localhost:7001");
  25. cy.get(selector.username).type("admin");
  26. cy.get(selector.password).type("123");
  27. cy.get(selector.loginButton).click();
  28. cy.url().should("eq", "http://localhost:7001/");
  29. });
  30. it("Login failed", () => {
  31. cy.request({
  32. method: "POST",
  33. url: "http://localhost:7001/api/login",
  34. body: {
  35. "application": "app-built-in",
  36. "organization": "built-in",
  37. "username": "admin",
  38. "password": "1234",
  39. "autoSignin": true,
  40. "type": "login",
  41. },
  42. }).then((Response) => {
  43. expect(Response).property("body").property("status").to.equal("error");
  44. });
  45. });
  46. it("ui Login failed", () => {
  47. cy.visit("http://localhost:7001");
  48. cy.get(selector.username).type("admin");
  49. cy.get(selector.password).type("1234");
  50. cy.get(selector.loginButton).click();
  51. cy.url().should("eq", "http://localhost:7001/login");
  52. });
  53. });