Sha256: c651db8955a75b52ee146e0e86621f605e77e29604c176f391132fe926eb5ddb

Contents?: true

Size: 1.31 KB

Versions: 76

Compression:

Stored size: 1.31 KB

Contents

// +build ignore

package main

import (
	"log"
	"text/template"

	"../../gen"
)

func main() {
	t, err := template.New("").Parse(tmpl)
	if err != nil {
		log.Fatal(err)
	}
	var j js
	if err := gen.Gen("rna-transcription", &j, t); err != nil {
		log.Fatal(err)
	}
}

// The JSON structure we expect to be able to unmarshal into
type js struct {
	Cases []struct {
		Description string
		Dna         string
		Expected    string
	}
}

// Template applied to above data structure generates the Go test cases.
//
// Note x-common test cases have some test cases that are not used here.
//
// It has some with invalid DNA inputs indicated with null expected values.
// The current API does not have an error or ok return.  It could be changed
// but it's simple for now, leaving the result undefined for invalid input.
// So these test cases are skipped here.
//
// Also the x-common test cases include some test cases in the reverse
// direction, from rna to dna.  These are not called for by the exercise
// readme and have no biological basis and so are not converted here.
var tmpl = `package strand

// Source: {{.Ori}}
{{if .Commit}}// Commit: {{.Commit}}
{{end}}

var rnaTests = []struct {
	input    string
	expected string
}{
{{range .J.Cases}} {{if and .Dna .Expected}} // {{.Description}}
	{"{{.Dna}}", "{{.Expected}}"},

{{end}}{{end}}}
`

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
trackler-2.0.8.43 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.42 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.41 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.40 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.39 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.38 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.37 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.36 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.35 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.34 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.33 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.32 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.31 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.30 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.29 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.28 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.27 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.26 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.24 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.8.23 tracks/go/exercises/rna-transcription/example_gen.go