Slide 1

Slide 1 text

Test-Driven Approaches to Documenting RESTful APIs Jenn Strater @jennstrater Groovy Users of Minnesota February 9, 2016

Slide 2

Slide 2 text

About Me

Slide 3

Slide 3 text

About Me • Senior Consultant at Object Partners, Inc.

Slide 4

Slide 4 text

About Me • Senior Consultant at Object Partners, Inc. • Co-Founder of Gr8Ladies

Slide 5

Slide 5 text

Background

Slide 6

Slide 6 text

Background • Creating RESTful APIs with Groovy • Spring Boot • Grails

Slide 7

Slide 7 text

Background • Creating RESTful APIs with Groovy • Spring Boot • Grails • Documentation • Swagger • Asciidoctor

Slide 8

Slide 8 text

Current Documentation Models

Slide 9

Slide 9 text

REST Maturity Model src: http://martinfowler.com/articles/richardsonMaturityModel.html

Slide 10

Slide 10 text

REST Maturity Model src: http://martinfowler.com/articles/richardsonMaturityModel.html

Slide 11

Slide 11 text

Endpoint Vs Resource Design

Slide 12

Slide 12 text

Endpoint Vs Resource Design VS

Slide 13

Slide 13 text

Swagger

Slide 14

Slide 14 text

Swagger Approaches

Slide 15

Slide 15 text

SpringFox src: https://www.flickr.com/photos/24874528@N04/17125924230

Slide 16

Slide 16 text

Super Easy Install dependencies { compile "io.springfox:springfox-swagger2:$springfoxVersion" compile “io.springfox:springfox-swagger-ui:$springfoxVersion” }

Slide 17

Slide 17 text

Custom JSON {
 "swagger": "2.0",
 "info": {
 "version": "1",
 "title": "My Service",
 "contact": {
 "name": "Company Name"
 },
 "license": {}
 },
 "host": "example.com",
 "basepath": "/docs",
 "tags": [
 {
 "name": "group name",
 "description": "what this group of api endpoints is for",
 }
 ],
 "paths": {
 "/api/v1/groupname/resource":
 .
 .
 .
 }

Slide 18

Slide 18 text

Swagger UI • Springfox generated UI • Copy static files and customize

Slide 19

Slide 19 text

CONSIDERATIONS

Slide 20

Slide 20 text

Central Information Security Http Verbs Error Handling Http Status

Slide 21

Slide 21 text

Multiple Services

Slide 22

Slide 22 text

Headers src: https://cask.scotch.io/2015/06/angular-laravel-auth-10.png

Slide 23

Slide 23 text

Object Mapping src: https://github.com/springfox/springfox/issues/281

Slide 24

Slide 24 text

Versioning

Slide 25

Slide 25 text

Annotation Hell src: http://www.nvisia.com/software-development/swagger-cataloging-with-the-worlds-most-popular-framework-for-apis

Slide 26

Slide 26 text

Annotation Hell src: http://www.nvisia.com/software-development/swagger-cataloging-with-the-worlds-most-popular-framework-for-apis

Slide 27

Slide 27 text

Advantages “Try-It” Button

Slide 28

Slide 28 text

Swagger2Markup

Slide 29

Slide 29 text

public class Swagger2MarkupTest {
 @Autowired
 private WebApplicationContext context;
 
 private MockMvc mockMvc;
 
 @Before
 public void setUp() {
 this.mockMvc = MockMvcBuilders.webAppContextSetup(this.context).build();
 }
 


Slide 30

Slide 30 text

public class Swagger2MarkupTest {
 @Autowired
 private WebApplicationContext context;
 
 private MockMvc mockMvc;
 
 @Before
 public void setUp() {
 this.mockMvc = MockMvcBuilders.webAppContextSetup(this.context).build();
 }
 
 @Test
 public void convertSwaggerToAsciiDoc() throws Exception {
 this.mockMvc.perform(get("/v2/api-docs")
 .accept(MediaType.APPLICATION_JSON))
 .andDo(Swagger2MarkupResultHandler.outputDirectory(“src/docs/ asciidoc/generated").build())
 .andExpect(status().isOk());
 }
 


Slide 31

Slide 31 text

public class Swagger2MarkupTest {
 @Autowired
 private WebApplicationContext context;
 
 private MockMvc mockMvc;
 
 @Before
 public void setUp() {
 this.mockMvc = MockMvcBuilders.webAppContextSetup(this.context).build();
 }
 
 @Test
 public void convertSwaggerToAsciiDoc() throws Exception {
 this.mockMvc.perform(get("/v2/api-docs")
 .accept(MediaType.APPLICATION_JSON))
 .andDo(Swagger2MarkupResultHandler.outputDirectory(“src/docs/ asciidoc/generated").build())
 .andExpect(status().isOk());
 }
 
 @Test
 public void convertSwaggerToMarkdown() throws Exception {
 this.mockMvc.perform(get("/v2/api-docs")
 .accept(MediaType.APPLICATION_JSON))
 .andDo(Swagger2MarkupResultHandler.outputDirectory(“src/docs/ markdown/generated")
 .withMarkupLanguage(MarkupLanguage.MARKDOWN).build())
 .andExpect(status().isOk());
 }
 }

Slide 32

Slide 32 text

No content

Slide 33

Slide 33 text

No content

Slide 34

Slide 34 text

Test-Driven Documentation Document Green Red Refactor

Slide 35

Slide 35 text

Spring REST Docs

Slide 36

Slide 36 text

Game Changers • Generated code snippets • Tests fail when documentation is missing or out-of- date • Supports Level III Rest APIs (Hypermedia)

Slide 37

Slide 37 text

Getting Started • Documentation - Spring Projects • Documenting RESTful Apis - SpringOne2GX 2015 - Andy Wilkinson • Spring REST Docs - Documenting RESTful APIs using your tests - Devoxx Belgium 2015 - Anders Evers

Slide 38

Slide 38 text

Groovier Spring REST docs

Slide 39

Slide 39 text

Groovier Spring REST docs • Groovy Spring Boot Project • Level II Rest API

Slide 40

Slide 40 text

Groovier Spring REST docs • Groovy Spring Boot Project • Level II Rest API + Asciidoctor Gradle plugin

Slide 41

Slide 41 text

Groovier Spring REST docs • Groovy Spring Boot Project • Level II Rest API + Asciidoctor Gradle plugin + MockMVC and documentation to Spock tests

Slide 42

Slide 42 text

Groovy Spring Boot App • Start with lazybones spring boot app • Add mock endpoints for example https://github.com/jlstrater/groovy-spring-boot- restdocs-example

Slide 43

Slide 43 text

Endpoints @CompileStatic
 @RestController
 @RequestMapping('/hello')
 @Slf4j
 class ExampleController {
 
 @RequestMapping(method = RequestMethod.GET, produces = 'application/json', consumes = 'application/json')
 Example list() {
 new Example(name: 'World')
 }
 
 @RequestMapping(method = RequestMethod.POST, produces = 'application/json', consumes = 'application/json')
 Example list(@RequestBody Example example) {
 example
 }
 }

Slide 44

Slide 44 text

Asciidoctor Gradle Plugin

Slide 45

Slide 45 text

Install classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
 apply plugin: 'org.asciidoctor.convert'
 
 asciidoctor {
 sourceDir = file('src/docs')
 outputDir "$projectDir/src/main/resources/public"
 backends 'html5'
 attributes 'source-highlighter' : 'prettify',
 'imagesdir':'images',
 'toc':'left',
 'icons': 'font',
 'setanchors':'true',
 'idprefix':'',
 'idseparator':'-',
 'docinfo1':'true'
 }


Slide 46

Slide 46 text

Example AsciiDoc = Gr8Data API Guide
 Jenn Strater;
 :doctype: book
 :icons: font
 :source-highlighter: highlightjs
 :toc: left
 :toclevels: 4
 :sectlinks:
 
 [introduction]
 = Introduction
 
 The Gr8Data API is a RESTful web service for aggregating and displaying gender ratios from
 various companies across the world. This document outlines how to submit data from your company or team and
 how to access the aggregate data.
 
 [[overview-http-verbs]]
 == HTTP verbs
 
 The Gr8Data API tries to adhere as closely as possible to standard HTTP and REST conventions in its
 use of HTTP verbs.

Slide 47

Slide 47 text

Converted to HTML

Slide 48

Slide 48 text

MockMvc Test src: http://www.javacodegeeks.com/2013/04/spring-mvc-introduction-in-testing.html

Slide 49

Slide 49 text

Stand Alone Setup class ExampleControllerSpec extends Specification {
 protected MockMvc mockMvc
 
 void setup() {
 this.mockMvc = MockMvcBuilders.standaloneSetup( new ExampleController()).build()
 }
 
 void 'test and document get with example endpoint’() {
 when:
 ResultActions result = this.mockMvc.perform( get(‘/hello’).contentType(MediaType.APPLICATION_JSON)) then:
 result .andExpect(status().isOk()) .andExpect(jsonPath("name").value("World"))
 .andExpect(jsonPath("message").value("Hello, World!”)) }

Slide 50

Slide 50 text

Web Context Setup void setup() {
 this.mockMvc = MockMvcBuilders .webAppContextSetup(this.context) .build()
 }

Slide 51

Slide 51 text

Web Context Setup void setup() {
 this.mockMvc = MockMvcBuilders .webAppContextSetup(this.context) .build()
 } If context is null, remember to add spock-spring!!

Slide 52

Slide 52 text

Spring REST docs

Slide 53

Slide 53 text

Gradle ext {
 snippetsDir = file( 'src/docs/generated-snippets')
 } testCompile “org.springframework.restdocs:spring- restdocs-mockmvc:1.0.1.RELEASE”


Slide 54

Slide 54 text

Gradle asciidoctor {
 dependsOn test
 sourceDir = file('src/docs')
 outputDir "$projectDir/src/main/resources/public"
 + inputs.dir snippetsDir
 backends 'html5'
 attributes 'source-highlighter' : 'prettify',
 'imagesdir':'images',
 'toc':'left',
 'icons': 'font',
 'setanchors':'true',
 'idprefix':'',
 'idseparator':'-',
 'docinfo1':'true',
 + 'snippets': snippetsDir,
 }

Slide 55

Slide 55 text

Setup & GET

Slide 56

Slide 56 text

Setup & GET class ExampleControllerSpec extends Specification {
 
 @Rule
 RestDocumentation restDocumentation = new RestDocumentation('src/docs/generated- snippets')
 
 protected MockMvc mockMvc
 
 void setup() {
 this.mockMvc = MockMvcBuilders.standaloneSetup(new ExampleController())
 .apply(documentationConfiguration(this.restDocumentation))
 .build()
 }

Slide 57

Slide 57 text

Setup & GET class ExampleControllerSpec extends Specification {
 
 @Rule
 RestDocumentation restDocumentation = new RestDocumentation('src/docs/generated- snippets')
 
 protected MockMvc mockMvc
 
 void setup() {
 this.mockMvc = MockMvcBuilders.standaloneSetup(new ExampleController())
 .apply(documentationConfiguration(this.restDocumentation))
 .build()
 }

Slide 58

Slide 58 text

Setup & GET class ExampleControllerSpec extends Specification {
 
 @Rule
 RestDocumentation restDocumentation = new RestDocumentation('src/docs/generated- snippets')
 
 protected MockMvc mockMvc
 
 void setup() {
 this.mockMvc = MockMvcBuilders.standaloneSetup(new ExampleController())
 .apply(documentationConfiguration(this.restDocumentation))
 .build()
 } void 'test and document get with example endpoint'() {
 when:
 ResultActions result = this.mockMvc.perform(get('/hello')
 .contentType(MediaType.APPLICATION_JSON))

Slide 59

Slide 59 text

Setup & GET class ExampleControllerSpec extends Specification {
 
 @Rule
 RestDocumentation restDocumentation = new RestDocumentation('src/docs/generated- snippets')
 
 protected MockMvc mockMvc
 
 void setup() {
 this.mockMvc = MockMvcBuilders.standaloneSetup(new ExampleController())
 .apply(documentationConfiguration(this.restDocumentation))
 .build()
 } void 'test and document get with example endpoint'() {
 when:
 ResultActions result = this.mockMvc.perform(get('/hello')
 .contentType(MediaType.APPLICATION_JSON)) then:
 result
 .andExpect(status().isOk()) .andExpect(jsonPath('name').value('World'))
 .andExpect(jsonPath('message').value('Hello, World!'))
 .andDo(document('hello-get-example', preprocessResponse(prettyPrint()),
 responseFields(
 fieldWithPath('name').type(JsonFieldType.STRING).description('name'),
 fieldWithPath('message').type(JsonFieldType.STRING).description('hello world'))
 ))
 }
 }

Slide 60

Slide 60 text

No content

Slide 61

Slide 61 text

POST

Slide 62

Slide 62 text

POST void 'test and document post with example endpoint and custom name'() {
 when: ResultActions result = this.mockMvc.perform(post(‘/hello') .content(new ObjectMapper() .writeValueAsString(new Example(name: 'mockmvc test’)) .contentType(MediaType.APPLICATION_JSON))

Slide 63

Slide 63 text

POST void 'test and document post with example endpoint and custom name'() {
 when: ResultActions result = this.mockMvc.perform(post(‘/hello') .content(new ObjectMapper() .writeValueAsString(new Example(name: 'mockmvc test’)) .contentType(MediaType.APPLICATION_JSON)) then:
 result
 .andExpect(status().isOk())
 .andExpect(jsonPath('name').value('mockmvc test'))
 .andExpect(jsonPath('message').value('Hello, mockmvc test!')) .andDo(document('hello-post-example', preprocessResponse(prettyPrint()),
 responseFields(
 fieldWithPath('name').type(JsonFieldType.STRING)
 .description('name'),
 fieldWithPath('message').type(JsonFieldType.STRING)
 .description('hello world'))
 ))
 }

Slide 64

Slide 64 text

No content

Slide 65

Slide 65 text

List Example void 'test and document get of a list from example endpoint'() {
 when:
 ResultActions result = this.mockMvc.perform(get('/hello/list')
 .contentType(MediaType.APPLICATION_JSON))
 
 then:
 result
 .andExpect(status().isOk())
 .andDo(document('hello-list-example', preprocessResponse(prettyPrint()),
 responseFields(
 fieldWithPath('[].message').type(JsonFieldType.STRING)
 .description('message'))
 ))
 }

Slide 66

Slide 66 text

List Example void 'test and document get of a list from example endpoint'() {
 when:
 ResultActions result = this.mockMvc.perform(get('/hello/list')
 .contentType(MediaType.APPLICATION_JSON))
 
 then:
 result
 .andExpect(status().isOk())
 .andDo(document('hello-list-example', preprocessResponse(prettyPrint()),
 responseFields(
 fieldWithPath('[].message').type(JsonFieldType.STRING)
 .description('message'))
 ))
 }

Slide 67

Slide 67 text

Central Info - Errors void 'test and document error format’() { when:
 ResultActions result = this.mockMvc.perform(put('/error')
 .contentType(MediaType.APPLICATION_JSON)
 .requestAttr(RequestDispatcher.ERROR_STATUS_CODE, 405)
 .requestAttr(RequestDispatcher.ERROR_REQUEST_URI, '/hello')
 .requestAttr(RequestDispatcher.ERROR_MESSAGE, "Request method 'PUT' not supported"))


Slide 68

Slide 68 text

Central Info - Errors void 'test and document error format’() { when:
 ResultActions result = this.mockMvc.perform(put('/error')
 .contentType(MediaType.APPLICATION_JSON)
 .requestAttr(RequestDispatcher.ERROR_STATUS_CODE, 405)
 .requestAttr(RequestDispatcher.ERROR_REQUEST_URI, '/hello')
 .requestAttr(RequestDispatcher.ERROR_MESSAGE, "Request method 'PUT' not supported"))
 then:
 result .andExpect(status().isMethodNotAllowed())
 .andDo(document('error-example', preprocessResponse(prettyPrint()),
 responseFields(
 fieldWithPath(‘error') .description('The HTTP error that occurred, e.g. `Bad Request`'),
 fieldWithPath(‘message') .description('A description of the cause of the error'),
 fieldWithPath('path').description('The path to which the request was made'),
 fieldWithPath('status').description('The HTTP status code, e.g. `400`'),
 fieldWithPath(‘timestamp') .description('The time, in milliseconds, at which the error occurred'))
 ))
 }

Slide 69

Slide 69 text

Failing Tests

Slide 70

Slide 70 text

Failing Tests

Slide 71

Slide 71 text

Generated Snippets • curl-request.adoc • http-request.adoc • http-response.adoc • response-fields.adoc • request-parameters.adoc

Slide 72

Slide 72 text

Add Snippets to AsciiDoc == Errors
 
 Whenever an error response (status code >= 400) is returned, the body will contain a JSON object
 that describes the problem. The error object has the following structure:
 
 include::{snippets}/error-example/response-fields.adoc[]
 
 For example, a request that attempts to apply a non-existent tag to a note will produce a
 `400 Bad Request` response:
 
 include::{snippets}/error-example/http-response.adoc[]
 
 [[resources]]
 = Resources
 
 include::resources/example.adoc[]

Slide 73

Slide 73 text

Build Docs src/docs index.adoc src/main/ resources/public/ html5 index.html

Slide 74

Slide 74 text

Publish Docs publish.gradle buildscript {
 repositories {
 jcenter()
 }
 
 dependencies {
 classpath 'org.ajoberstar:gradle-git:1.1.0'
 }
 }
 
 apply plugin: 'org.ajoberstar.github-pages'
 
 githubPages {
 repoUri = '[email protected]:jlstrater/groovy-spring-boot-restdocs-example.git'
 pages {
 from(file('build/docs'))
 }
 }

Slide 75

Slide 75 text

http://jlstrater.github.io/groovy-spring-boot-restdocs-example

Slide 76

Slide 76 text

Grails Rest Assured - 1.1.0 Release img src: https://www.flickr.com/photos/dskley/15558668690

Slide 77

Slide 77 text

Conclusion • API documentation is complex • Choosing the right tool for the job not just about the easiest one to setup • Spring REST Docs is a promising tool to enforce good testing and documentation practices without muddying source code.

Slide 78

Slide 78 text

Questions? https://github.com/jlstrater/groovy-spring-boot-restdocs-example @jennstrater

Slide 79

Slide 79 text

Questions? https://github.com/jlstrater/groovy-spring-boot-restdocs-example @jennstrater