当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
2 Star 4 Fork 3

acm对外小分队/hgoj
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
user_test.go 672 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"fmt"
"github.com/xuri/excelize/v2"
"github.com/yinrenxin/hgoj/models"
"github.com/yinrenxin/hgoj/tools"
"testing"
)
func TestSaveUser(t *testing.T) {
initTemplate()
initSession()
initStatic()
initLogs()
//启动定时任务
go tools.StartCron()
go tools.InitTools()
f, err := excelize.OpenFile("data.xlsx")
if err != nil {
println(err.Error())
return
}
rows, err := f.GetRows("Sheet1")
for _, row := range rows {
username := row[5]
nick := row[4] + row[2]
pwd := row[5]
_, err := models.SaveUser(username, nick, "", pwd, "湖南工学院", "")
if err != nil {
fmt.Println(err)
}
fmt.Println(nick, pwd)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/acm_foreign_branch/hgoj.git
[email protected]:acm_foreign_branch/hgoj.git
acm_foreign_branch
hgoj
hgoj
master

搜索帮助