chenjun 2 years ago
parent
commit
9b92753d5b
5 changed files with 1 additions and 164 deletions
  1. 1 1
      jest.config.js
  2. 0 84
      mock/user.js
  3. 0 33
      src/api/gateway.js
  4. 0 17
      src/api/table.js
  5. 0 29
      src/utils/des.js

+ 1 - 1
jest.config.js

@@ -20,5 +20,5 @@ module.exports = {
     'lcov',
     'text-summary'
   ],
-  testURL: 'http://localhost/'
+  testURL: ''
 }

+ 0 - 84
mock/user.js

@@ -1,84 +0,0 @@
-
-const tokens = {
-  admin: {
-    token: 'admin-token'
-  },
-  editor: {
-    token: 'editor-token'
-  }
-}
-
-const users = {
-  'admin-token': {
-    roles: ['admin'],
-    introduction: 'I am a super administrator',
-    avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif',
-    name: 'Super Admin'
-  },
-  'editor-token': {
-    roles: ['editor'],
-    introduction: 'I am an editor',
-    avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif',
-    name: 'Normal Editor'
-  }
-}
-
-module.exports = [
-  // user login
-  {
-    url: '/vue-admin-template/user/login',
-    type: 'post',
-    response: config => {
-      const { username } = config.body
-      const token = tokens[username]
-
-      // mock error
-      if (!token) {
-        return {
-          code: 60204,
-          message: 'Account and password are incorrect.'
-        }
-      }
-
-      return {
-        code: 20000,
-        data: token
-      }
-    }
-  },
-
-  // get user info
-  {
-    url: '/vue-admin-template/user/info\.*',
-    type: 'get',
-    response: config => {
-      const { token } = config.query
-      const info = users[token]
-
-      // mock error
-      if (!info) {
-        return {
-          code: 50008,
-          message: 'Login failed, unable to get user details.'
-        }
-      }
-
-      return {
-        code: 20000,
-        data: info
-      }
-    }
-  },
-
-  // user logout
-  {
-    url: '/vue-admin-template/user/logout',
-    type: 'post',
-    response: _ => {
-      return {
-        code: 20000,
-        data: 'success'
-      }
-    }
-  }
-]

+ 0 - 33
src/api/gateway.js

@@ -1,33 +0,0 @@
-import request from '@/utils/request'
-
-export function getGatewayInterfaceList(params) {
-  return request({
-    url: '/vue-admin-template/gateway/interface/list',
-    method: 'get',
-    params
-  })
-}
-
-export function getGatewayLimitList(params) {
-  return request({
-    url: '/vue-admin-template/gateway/limit/list',
-    method: 'get',
-    params
-  })
-}
-
-export function getGatewayCircuitBreakList(params) {
-  return request({
-    url: '/vue-admin-template/gateway/circuit-break/list',
-    method: 'get',
-    params
-  })
-}
-
-export function getGatewayDocumentList(params) {
-  return request({
-    url: '/vue-admin-template/gateway/document/list',
-    method: 'get',
-    params
-  })
-}

+ 0 - 17
src/api/table.js

@@ -1,17 +0,0 @@
-import request from '@/utils/request'
-
-export function getList(params) {
-  return request({
-    url: '/vue-admin-template/table/list',
-    method: 'get',
-    params
-  })
-}
-
-export function getLogList(params) {
-  return request({
-    url: '/vue-admin-template/log/list',
-    method: 'get',
-    params
-  })
-}

+ 0 - 29
src/utils/des.js

@@ -12,36 +12,7 @@ export const getUuid = () => {
   s[8] = s[13] = s[18] = s[23] = "-";
   return s.join("");
 };
-// DES加密
-export const encryptDes = (message, key, iv) => {
-  let keyHex = cryptoJs.enc.Utf8.parse(key);
-  let ivHex = cryptoJs.enc.Utf8.parse(iv);
-  let option = {
-    iv: ivHex,
-    mode: cryptoJs.mode.CBC,
-    padding: cryptoJs.pad.Pkcs7
-  };
-  let encrypted = cryptoJs.DES.encrypt(message, keyHex, option);
-  return encrypted.ciphertext.toString();
-};
 
-// DES解密
-export const decryptDes = (message, key, iv) => {
-  let keyHex = cryptoJs.enc.Utf8.parse(key);
-  let ivHex = cryptoJs.enc.Utf8.parse(iv);
-  let decrypted = cryptoJs.DES.decrypt(
-    {
-      ciphertext: cryptoJs.enc.Hex.parse(message)
-    },
-    keyHex,
-    {
-      iv: ivHex,
-      mode: cryptoJs.mode.CBC,
-      padding: cryptoJs.pad.Pkcs7
-    }
-  );
-  return decrypted.toString(cryptoJs.enc.Utf8);
-};
 export const sha1_to_base64 = sha1 => {
   let digits =
     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";