From c3de0210c6e5c5e6d6c2d92910021bbd33849c5f Mon Sep 17 00:00:00 2001 From: huangsimin Date: Tue, 18 Dec 2018 15:33:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0ADInfo=E7=9A=84=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E5=88=B0=E4=BB=BB=E5=8A=A1=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config_test.go | 3 +-- person.go | 9 +++++++-- task.go | 11 +++++++++++ task_test.go | 11 ++++++----- 4 files changed, 25 insertions(+), 9 deletions(-) diff --git a/config_test.go b/config_test.go index fa8847b..3af6bb1 100644 --- a/config_test.go +++ b/config_test.go @@ -10,10 +10,9 @@ import ( func TestNewYaml(t *testing.T) { test := NewConfig("test.yaml") data := spew.Sdump(test) - if !(regexp.MustCompile(`Device: \(string\) \(len=12\) "eson-OnePlus"`).MatchString(data) && regexp.MustCompile(`http://is.snssdk.com/2/article/information/v24/\?`).MatchString(data)) { + if !regexp.MustCompile(`Device: \(string\) \(len=12\) "eson-OnePlus"`).MatchString(data) { t.Error(data) } - t.Error(data) } func TestCase(t *testing.T) { diff --git a/person.go b/person.go index 2ea6626..75c70b5 100644 --- a/person.go +++ b/person.go @@ -28,6 +28,9 @@ type ITask interface { GetProxies() *clinked.CircularLinked AddProxies(proxy string) + SetADInfo(adinfo ADInfo) + GetADInfo() *ADInfo + TimeUp() bool NextTime() time.Time } @@ -95,6 +98,7 @@ func splitTasks(conf *Config) []ITask { switch conf.Mode { case 0: initTask(conf, task, curl) + // 初始化代理 if proxies != nil { for _, cnode := range proxies.GetLoopValues() { proxy := cnode.GetValue().(string) @@ -143,7 +147,6 @@ func (person *Person) Execute() { for t := range result { log.Println(t) taskLen-- - if taskLen <= 0 { close(result) } @@ -155,7 +158,6 @@ func (person *Person) Execute() { // initTask 生成一个新任务 func initTask(conf *Config, task ITask, curl *curl2info.CURL) { - task.Init() if curl.Crontab != "" { task.SetCrontab(curl.Crontab) @@ -163,7 +165,10 @@ func initTask(conf *Config, task ITask, curl *curl2info.CURL) { task.SetCrontab(conf.Crontab) } + task.SetADInfo(conf.ADInfo) task.SetCurl(curl) + + task.Init() } // ExecuteOnPlan 按照计划执行任务并返回结果 diff --git a/task.go b/task.go index f6ced5a..b0d5114 100644 --- a/task.go +++ b/task.go @@ -20,6 +20,7 @@ type Task struct { workflow *requests.Workflow session *requests.Session proxies clinked.CircularLinked + adinfo ADInfo } // Init 初始化, 会被Persion默认调用, 可以用来覆盖 @@ -57,6 +58,16 @@ func (task *Task) GetProxies() *clinked.CircularLinked { return &task.proxies } +// SetADInfo 设置广告的信息结构 +func (task *Task) SetADInfo(adinfo ADInfo) { + task.adinfo = adinfo +} + +// GetADInfo 获取广告的信息结构 +func (task *Task) GetADInfo() *ADInfo { + return &task.adinfo +} + // SetCrontab 设置crontab的控制规则字符串 func (task *Task) SetCrontab(cron string) { task.crontab = crontab.NewCrontab(cron) diff --git a/task_test.go b/task_test.go index 8c7edf2..d143592 100644 --- a/task_test.go +++ b/task_test.go @@ -15,11 +15,9 @@ func TestExecute(t *testing.T) { panic(err) } - resp, err := u.CreateWorkflow(nil).Execute() + _, err = u.CreateWorkflow(nil).Execute() if err != nil { t.Error("TestExecute") - } else { - log.Println(resp.Content()) } } @@ -29,7 +27,11 @@ type Toutiao struct { func (tt *Toutiao) Execute(data interface{}) ITask { resp, err := tt.Request() - log.Println(resp.Content()[0:20], err) + if err != nil { + panic(err) + } else { + log.Println(resp.Content()[0:20], err) + } return nil } @@ -40,7 +42,6 @@ func TestExecutePlan(t *testing.T) { person.Config("test.yaml") person.Execute() - t.Error("") // for _, task := range person.Tasks.GetLoopValues() { // task.GetValue().(*Task).ExecuteOnPlan() // }