mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
feat: random text on mocks
This commit is contained in:
parent
51fd582a31
commit
2409f18afa
@ -1,6 +1,19 @@
|
||||
package repositories
|
||||
|
||||
import "time"
|
||||
import (
|
||||
"math/rand"
|
||||
"time"
|
||||
)
|
||||
|
||||
var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
|
||||
|
||||
func randSeq(n int) string {
|
||||
b := make([]rune, n)
|
||||
for i := range b {
|
||||
b[i] = letters[rand.Intn(len(letters))]
|
||||
}
|
||||
return string(b)
|
||||
}
|
||||
|
||||
func getFile(id, postId int, name string) File {
|
||||
return File{
|
||||
@ -17,8 +30,8 @@ func getPost(id, threadID int) Post {
|
||||
return Post{
|
||||
ID: id,
|
||||
ThreadID: threadID,
|
||||
Title: "Basic Title",
|
||||
Text: "Basic Text",
|
||||
Title: randSeq(rand.Intn(100)),
|
||||
Text: randSeq(rand.Intn(100)),
|
||||
IsSage: false,
|
||||
Files: []File{
|
||||
getFile(2, id, "https://memepedia.ru/wp-content/uploads/2018/03/ebanyy-rot-etogo-kazino.png"),
|
||||
@ -43,7 +56,9 @@ func getThread(id int) Thread {
|
||||
var ThreadsDb = []Thread{}
|
||||
|
||||
func SeedMocks() {
|
||||
for i := 1; i < 10; i++ {
|
||||
rand.Seed(time.Now().UnixNano())
|
||||
|
||||
for i := 1; i < 100; i++ {
|
||||
ThreadsDb = append(ThreadsDb, getThread(i))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user