Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kadai3-1-micchie #24

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

kadai3-1-micchie #24

wants to merge 3 commits into from

Conversation

mi-bear
Copy link
Member

@mi-bear mi-bear commented Aug 4, 2019

Overview

  • 標準出力に英単語を出す
  • 標準入力から1行受け取る
  • 制限時間内に何問解けたか表示する
  • テストを書く

Command

$ cd gopherdojo/dojo6/kadai3/micchie/typing-game
$ make
$ ./typing-game

Description

config.yml に制限時間と, 出力する英単語を登録して実行をします。

つぶやき

  • Run() のテストがうまく書けない...

@mi-bear mi-bear requested a review from tenntenn August 4, 2019 07:07
@mi-bear mi-bear self-assigned this Aug 4, 2019
@mi-bear mi-bear changed the title [wip] kadai3-1-micchie kadai3-1-micchie Aug 6, 2019

// Game はtタイピングゲームのコンテキストや入出力などの情報を格納します.
type Game struct {
Context context.Context
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

コンテキストはフィールドに入れない

scan <- scanner.Text()
}
if err := scanner.Err(); err != nil {
fmt.Fprintln(os.Stderr, "input:", err)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

errgroupを使ったほうが良さそう


switch {
case g.Score.Count == len(g.Words):
fmt.Fprintln(g.Output, fmt.Sprintf(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fprintfを使う

)

func TestGame_Run(t *testing.T) {
g := &game.Game{}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

これで良さそう

g := &game.Game{
	TimeLimit: 5 * time.Second,
	Words:     []string{
		// 略
	},
}

"bear",
}

ch := make(chan string)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

チャネルを受信する側は?

time.Sleep(2 * time.Second)
ch <- "beer"
}()

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ブロックされていないので何も起きずにテストが終了する


// Config is a structure of config.yml.
var Config = struct {
Limit time.Duration `default:"30"`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

time.Duration型はすでに時間単位を型情報として持っているので、3030秒という意味にはできない。
time.Duration型で30は30ナノ秒を表す。
https://golang.org/pkg/time/#pkg-constants

}

func shuffle(list []string) {
rand.Seed(time.Now().UnixNano())
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

乱数の種の設定はプログラムで1回やれば十分。
通常は関数呼び出しごとにはやらずに、初期化だけ行う。

g.Run()
}

func shuffle(list []string) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rand.Permを使えば良さそう。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants