org.springframework.cloud.config.monitor.GithubPropertyPathNotificationExtractorTests.java Source code

Java tutorial

Introduction

Here is the source code for org.springframework.cloud.config.monitor.GithubPropertyPathNotificationExtractorTests.java

Source

/*
 * Copyright 2015 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.cloud.config.monitor;

import java.util.Map;

import org.junit.Test;
import org.springframework.core.io.ClassPathResource;
import org.springframework.http.HttpHeaders;

import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

/**
 * @author Dave Syer
 *
 */
public class GithubPropertyPathNotificationExtractorTests {

    private GithubPropertyPathNotificationExtractor extractor = new GithubPropertyPathNotificationExtractor();

    private HttpHeaders headers = new HttpHeaders();

    @Test
    public void githubSample() throws Exception {
        // See https://developer.github.com/v3/activity/events/types/#pushevent
        Map<String, Object> value = new ObjectMapper().readValue(
                new ClassPathResource("github.json").getInputStream(), new TypeReference<Map<String, Object>>() {
                });
        this.headers.set("X-Github-Event", "push");
        PropertyPathNotification extracted = this.extractor.extract(this.headers, value);
        assertNotNull(extracted);
        assertEquals("README.md", extracted.getPaths()[0]);
    }

    @Test
    public void notAPushNotDetected() throws Exception {
        Map<String, Object> value = new ObjectMapper().readValue(
                new ClassPathResource("github.json").getInputStream(), new TypeReference<Map<String, Object>>() {
                });
        this.headers.set("X-Github-Event", "issues");
        PropertyPathNotification extracted = this.extractor.extract(this.headers, value);
        assertNull(extracted);
    }

}