func TestPackageQuery(t *testing.T) { scribe.Bootstrap() scribe.TestHooks(true) pinfo := scribe.QueryPackages() for _, x := range pinfo { fmt.Println(x.Name, x.Version, x.Type) } if len(pinfo) != 7 { t.FailNow() } }
func main() { var ( docpath string expectedExit bool testHooks bool showVersion bool lineFmt bool jsonFmt bool ) err := scribe.Bootstrap() if err != nil { fmt.Fprintf(os.Stderr, "error: %v\n", err) os.Exit(1) } flag.BoolVar(&flagDebug, "d", false, "enable debugging") flag.BoolVar(&expectedExit, "e", false, "exit if result is unexpected") flag.StringVar(&docpath, "f", "", "path to document") flag.BoolVar(&lineFmt, "l", false, "output one result per line") flag.BoolVar(&jsonFmt, "j", false, "JSON output mode") flag.BoolVar(&testHooks, "t", false, "enable test hooks") flag.BoolVar(&showVersion, "v", false, "show version") flag.Parse() if showVersion { fmt.Fprintf(os.Stdout, "scribe %v\n", scribe.Version) os.Exit(0) } if flagDebug { scribe.SetDebug(true, os.Stderr) } if docpath == "" { fmt.Fprintf(os.Stderr, "error: must specify document path\n") os.Exit(1) } scribe.TestHooks(testHooks) fd, err := os.Open(docpath) if err != nil { fmt.Fprintf(os.Stderr, "error: %v\n", err) os.Exit(1) } defer fd.Close() doc, err := scribe.LoadDocument(fd) if err != nil { fmt.Fprintf(os.Stderr, "error: %v\n", err) os.Exit(1) } // In expectedExit mode, set a callback in the scribe module that will // be called immediately during analysis if a test result does not // match the boolean expectedresult parameter in the test. The will // result in the tool exiting with return code 2. if expectedExit { scribe.ExpectedCallback(failExit) } err = scribe.AnalyzeDocument(doc) if err != nil { fmt.Fprintf(os.Stderr, "error: %v\n", err) os.Exit(1) } for _, x := range doc.GetTestIdentifiers() { tr, err := scribe.GetResults(&doc, x) if err != nil { fmt.Fprintf(os.Stderr, "error obtaining results for \"%v\": %v\n", x, err) continue } if lineFmt { for _, x := range tr.SingleLineResults() { fmt.Fprintf(os.Stdout, "%v\n", x) } } else if jsonFmt { fmt.Fprintf(os.Stdout, "%v\n", tr.JSON()) } else { fmt.Fprintf(os.Stdout, "%v\n", tr.String()) } } os.Exit(0) }