dever 5 years ago
parent
commit
fd08600b46
4 changed files with 132 additions and 13 deletions
  1. 13 12
      config/env/localhost/default.php
  2. 1 1
      main/src/Journal_v1.php
  3. 8 0
      tests/index.php
  4. 110 0
      tests/src/Api.php

+ 13 - 12
config/env/localhost/default.php

@@ -89,18 +89,18 @@ if (isset($dc['mysql_user'])) {
     $config['database']['wechat'] = $dc['mysql_user'];
 }
 
-if (DEVER_APP_NAME == 'tests') {
+if (DEVER_APP_NAME == 'tests' && isset($dc['mysql_test'])) {
     # 测试
-    $dc['mysql_user']['charset'] = 'utf8';
-    $dc['mysql_user']['database'] = 'wonderful_test';
-    $dc['mysql_user']['type'] = 'pdo';
-    $config['database']['default'] = $dc['mysql_user'];
-    $config['database']['code'] = $dc['mysql_user'];
-    $config['database']['act'] = $dc['mysql_user'];
-    $config['database']['passport'] = $dc['mysql_user'];
-    $config['database']['pay'] = $dc['mysql_user'];
-    $config['database']['score'] = $dc['mysql_user'];
-    $config['database']['wechat'] = $dc['mysql_user'];
+    $dc['mysql_test']['charset'] = 'utf8';
+    $dc['mysql_test']['database'] = 'wonderful_test';
+    $dc['mysql_test']['type'] = 'pdo';
+    $config['database']['default'] = $dc['mysql_test'];
+    $config['database']['code'] = $dc['mysql_test'];
+    $config['database']['act'] = $dc['mysql_test'];
+    $config['database']['passport'] = $dc['mysql_test'];
+    $config['database']['pay'] = $dc['mysql_test'];
+    $config['database']['score'] = $dc['mysql_test'];
+    $config['database']['wechat'] = $dc['mysql_test'];
 }
 
 # 缓存配置
@@ -139,7 +139,8 @@ $config['cache'] = array
         'buy.pay' => 0,
         'journal_v1.top' => 600,
         //'journal_v1.getList' => 0,
-        'tests' => 0,
+        'tests_api.user' => 0,
+        'tests_api.buy' => 0,
     ),
 
     # 哪些路由中的参数不参与生成缓存的key

+ 1 - 1
main/src/Journal_v1.php

@@ -43,7 +43,7 @@ class Journal_v1 extends Core
             $this->data['push'] = Dever::db('journal/info')->getNew();
         }
 
-        $this->data['push'] = $this->ding($this->data['push']);
+        $this->data['push'] = $this->info($this->data['push']);
 
         
         $data = Dever::db('journal/info')->getAllByPage($where);

+ 8 - 0
tests/index.php

@@ -0,0 +1,8 @@
+<?php
+
+define('DEVER_APP_NAME', 'tests');
+define('DEVER_APP_LANG', '测试');
+define('DEVER_APP_PATH', dirname(__FILE__) . DIRECTORY_SEPARATOR);
+define('DEVER_MANAGE_ORDER', -100);
+define('DEVER_MANAGE_ICON', 'glyphicon glyphicon-tower layui-icon-video');
+include(DEVER_APP_PATH . '../boot.php');

+ 110 - 0
tests/src/Api.php

@@ -0,0 +1,110 @@
+<?php
+namespace Tests\src;
+
+use Dever;
+
+class Api
+{
+    # 用户注册
+    public function user()
+    {
+        $data['avatar'] = '';
+        $data['sex'] = rand(1,2);
+        $data['city'] = '';
+        $data['province'] = '';
+        $data['country'] = '';
+        $data['openid'] = 'openid_test_' . rand(1, 1000000);
+        $data['unionid'] = 'unionid_test_' . rand(1, 100);
+        $data['username'] = $data['openid'];
+        $data['session_key'] = $data['openid'];
+        Dever::load('passport/applet')->create($data);
+
+        return 'ok';
+    }
+
+    # 购买电子刊
+    public function buy()
+    {
+        $id = Dever::input('journal_id', 1);
+        $buy_id = Dever::input('buy_id', 1);
+        $journal = Dever::load('act/order')->getJournal($id);
+        $buy = Dever::load('act/order')->getBuy($buy_id);
+
+    	$order_id = Dever::load('act/order')->createOrder('JP');
+        $order_data['cate_id'] = $journal['cate_id'];
+        $order_data['order_id'] = $order_id;
+        $order_data['product_id'] = $journal['id'];
+        $order_data['buy_id'] = $buy['id'];
+        $order_data['uid'] = 1; 
+        $order_data['type'] = 3;
+        $order_data['status'] = 1;
+
+        $order_data['name'] = $journal['name'] . '-' . $buy['name'];
+        $order_data['buy_num'] = 1000;
+
+        $order_data['cash'] = 100;
+
+        $source = Dever::input('source');
+        $system = Dever::input('system', 1);
+        if (!$source) {
+            $source = $system;
+        }
+        if ($source) {
+            $order_data['source'] = $source;
+        }
+        $seller = Dever::input('seller');
+        if ($seller) {
+            $order_data['seller_id'] = $seller;
+        }
+
+        Dever::db('act/order')->insert($order_data);
+
+        $send['pay_product_id'] = $order_data['product_id'];
+        $send['pay_uid'] = $order_data['uid'];
+        $send['pay_cash'] = $order_data['cash'];
+        $send['pay_order_id'] = $order_data['order_id'];
+        $send['pay_status'] = 2;
+        $send['pay_msg'] = '';
+
+
+        Dever::load('act/lib/pay')->act_action($send);
+        return 'ok';
+    }
+
+    private function uid()
+    {
+        $uid = rand(1, 10);
+        $uid = Dever::login($uid);
+        Dever::setInput('signature', $uid);
+
+        $id = rand(1, 10);
+        Dever::setInput('id', $id);
+    }
+
+    # 查看电子刊列表
+    public function getList()
+    {
+        $this->uid();
+        $data = Dever::load('main/journal_v1')->getList();
+
+        return $data;
+    }
+
+    # 查看电子刊列表
+    public function getView()
+    {
+        $this->uid();
+        $data = Dever::load('main/journal_v1')->view();
+
+        return $data;
+    }
+
+    # 获取电子刊权限
+    public function getRead()
+    {
+        $this->uid();
+        $data = Dever::load('main/journal_v1')->view();
+
+        return $data;
+    }
+}