Sha256: ca367453dab482f2ce2f725ca6e1ad375b073b097f283e272a716a3f7fbaecb9

Contents?: true

Size: 1.32 KB

Versions: 67

Compression:

Stored size: 1.32 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.json", &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

67 entries across 67 versions & 1 rubygems

Version Path
trackler-2.0.6.11 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.10 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.9 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.8 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.7 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.6 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.5 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.4 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.3 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.2 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.1 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.6.0 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.18 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.17 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.16 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.15 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.14 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.13 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.12 tracks/go/exercises/rna-transcription/example_gen.go
trackler-2.0.5.11 tracks/go/exercises/rna-transcription/example_gen.go