Exemple #1
0
		It("turns Go errors into HTTP 500 responses", func() {
			Ω(rw.Status).Should(Equal(500))
			Ω(rw.ParentHeader["Content-Type"]).Should(Equal([]string{"text/plain"}))
			Ω(string(rw.Body)).Should(Equal(`"boom"` + "\n"))
		})

		Context("not verbose", func() {
			BeforeEach(func() {
				verbose = false
			})

			It("hides the error details", func() {
				var decoded goa.Error
				Ω(rw.Status).Should(Equal(500))
				Ω(rw.ParentHeader["Content-Type"]).Should(Equal([]string{goa.ErrorMediaIdentifier}))
				err := service.Decode(&decoded, bytes.NewBuffer(rw.Body), "application/json")
				Ω(err).ShouldNot(HaveOccurred())
				msg := fmt.Sprintf("%v", *goa.ErrInternal(`internal error [zzz]`))
				msg = regexp.QuoteMeta(msg)
				msg = strings.Replace(msg, "zzz", ".+", 1)
				Ω(fmt.Sprintf("%v", decoded)).Should(MatchRegexp(msg))
			})
		})
	})

	Context("with a handler returning a goa error", func() {
		var gerr *goa.Error

		BeforeEach(func() {
			service = newService(nil)
			gerr = &goa.Error{