代码拉取完成,页面将自动刷新
/*
* Copyright Confluent Inc.
*
* 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 io.confluent.examples.streams.interactivequeries.kafkamusic;
import io.confluent.examples.streams.avro.PlayEvent;
import io.confluent.examples.streams.avro.Song;
import io.confluent.examples.streams.kafka.EmbeddedSingleNodeKafkaCluster;
import io.confluent.kafka.serializers.AbstractKafkaAvroSerDeConfig;
import io.confluent.kafka.streams.serdes.avro.SpecificAvroSerializer;
import org.apache.kafka.clients.producer.KafkaProducer;
import org.apache.kafka.clients.producer.ProducerConfig;
import org.apache.kafka.clients.producer.ProducerRecord;
import org.apache.kafka.common.serialization.LongSerializer;
import org.apache.kafka.common.serialization.Serdes;
import org.apache.kafka.streams.KafkaStreams;
import org.apache.kafka.streams.state.HostInfo;
import org.apache.kafka.streams.state.QueryableStoreTypes;
import org.apache.kafka.streams.state.ReadOnlyKeyValueStore;
import org.apache.kafka.streams.state.StreamsMetadata;
import org.apache.kafka.test.TestUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.Invocation;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.MediaType;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.function.IntFunction;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import static io.confluent.examples.streams.interactivequeries.WordCountInteractiveQueriesExampleTest.randomFreeLocalPort;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
/**
* End-to-end integration test for {@link KafkaMusicExample}. Demonstrates
* how you can programmatically query the REST API exposed by {@link MusicPlaysRestService}
*/
public class KafkaMusicExampleTest {
@ClassRule
public static final EmbeddedSingleNodeKafkaCluster CLUSTER = new EmbeddedSingleNodeKafkaCluster();
private static final int MAX_WAIT_MS = 30000;
private KafkaStreams streams;
private MusicPlaysRestService restProxy;
private int appServerPort;
@BeforeClass
public static void createTopics() {
CLUSTER.createTopic(KafkaMusicExample.PLAY_EVENTS);
CLUSTER.createTopic(KafkaMusicExample.SONG_FEED);
// these topics initialized just to avoid some rebalances.
// they would normally be created by KafkaStreams.
CLUSTER.createTopic("kafka-music-charts-song-play-count-changelog");
CLUSTER.createTopic("kafka-music-charts-song-play-count-repartition");
CLUSTER.createTopic("kafka-music-charts-top-five-songs-by-genre-changelog");
CLUSTER.createTopic("kafka-music-charts-top-five-songs-by-genre-repartition");
CLUSTER.createTopic("kafka-music-charts-top-five-songs-changelog");
CLUSTER.createTopic("kafka-music-charts-top-five-songs-repartition");
CLUSTER.createTopic("kafka-music-charts-KSTREAM-MAP-0000000004-repartition");
}
@Before
public void createStreams() throws Exception {
appServerPort = randomFreeLocalPort();
streams =
KafkaMusicExample.createChartsStreams(CLUSTER.bootstrapServers(),
CLUSTER.schemaRegistryUrl(),
appServerPort,
TestUtils.tempDirectory().getPath());
restProxy = KafkaMusicExample.startRestProxy(streams, new HostInfo("localhost", appServerPort));
}
@After
public void shutdown() throws Exception {
restProxy.stop();
streams.close();
}
@Test
public void shouldCreateChartsAndAccessThemViaInteractiveQueries() throws Exception {
final Properties props = new Properties();
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, CLUSTER.bootstrapServers());
final Map<String, String> serdeConfig = Collections.singletonMap(
AbstractKafkaAvroSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, CLUSTER.schemaRegistryUrl());
final SpecificAvroSerializer<PlayEvent> playEventSerializer = new SpecificAvroSerializer<>();
playEventSerializer.configure(serdeConfig, false);
final SpecificAvroSerializer<Song> songSerializer = new SpecificAvroSerializer<>();
songSerializer.configure(serdeConfig, false);
final KafkaProducer<String, PlayEvent> playEventProducer = new KafkaProducer<>(props,
Serdes.String() .serializer(),
playEventSerializer);
final KafkaProducer<Long, Song> songProducer = new KafkaProducer<>(props,
new LongSerializer(),
songSerializer);
final List<Song> songs = Arrays.asList(new Song(1L,
"Fresh Fruit For Rotting Vegetables",
"Dead Kennedys",
"Chemical Warfare",
"Punk"),
new Song(2L,
"We Are the League",
"Anti-Nowhere League",
"Animal",
"Punk"),
new Song(3L,
"Live In A Dive",
"Subhumans",
"All Gone Dead",
"Punk"),
new Song(4L,
"PSI",
"Wheres The Pope?",
"Fear Of God",
"Punk"),
new Song(5L,
"Totally Exploited",
"The Exploited",
"Punks Not Dead",
"Punk"),
new Song(6L,
"The Audacity Of Hype",
"Jello Biafra And The Guantanamo School Of "
+ "Medicine",
"Three Strikes",
"Punk"),
new Song(7L,
"Licensed to Ill",
"The Beastie Boys",
"Fight For Your Right",
"Hip Hop"),
new Song(8L,
"De La Soul Is Dead",
"De La Soul",
"Oodles Of O's",
"Hip Hop"),
new Song(9L,
"Straight Outta Compton",
"N.W.A",
"Gangsta Gangsta",
"Hip Hop"),
new Song(10L,
"Fear Of A Black Planet",
"Public Enemy",
"911 Is A Joke",
"Hip Hop"),
new Song(11L,
"Curtain Call - The Hits",
"Eminem",
"Fack",
"Hip Hop"),
new Song(12L,
"The Calling",
"Hilltop Hoods",
"The Calling",
"Hip Hop")
);
songs.forEach(song -> songProducer.send(
new ProducerRecord<Long, Song>(KafkaMusicExample.SONG_FEED,
song.getId(),
song)));
songProducer.flush();
songProducer.close();
// create the play events we can use for charting
sendPlayEvents(6, songs.get(0), playEventProducer);
sendPlayEvents(5, songs.get(1), playEventProducer);
sendPlayEvents(4, songs.get(2), playEventProducer);
sendPlayEvents(3, songs.get(3), playEventProducer);
sendPlayEvents(2, songs.get(4), playEventProducer);
sendPlayEvents(1, songs.get(5), playEventProducer);
sendPlayEvents(6, songs.get(6), playEventProducer);
sendPlayEvents(5, songs.get(7), playEventProducer);
sendPlayEvents(4, songs.get(8), playEventProducer);
sendPlayEvents(3, songs.get(9), playEventProducer);
sendPlayEvents(2, songs.get(10), playEventProducer);
sendPlayEvents(1, songs.get(11), playEventProducer);
playEventProducer.close();
streams.start();
// wait until the StreamsMetadata is available as this indicates that
// KafkaStreams initialization has occurred
TestUtils.waitForCondition(() -> !StreamsMetadata.NOT_AVAILABLE.equals(streams.allMetadataForStore(KafkaMusicExample.TOP_FIVE_SONGS_STORE)),
MAX_WAIT_MS,
"StreamsMetadata should be available");
final String baseUrl = "http://localhost:" + appServerPort + "/kafka-music";
final Client client = ClientBuilder.newClient();
// Wait until the all-songs state store has some data in it
TestUtils.waitForCondition(() -> {
final ReadOnlyKeyValueStore<Long, Song>
songsStore;
try {
songsStore =
streams.store(KafkaMusicExample.ALL_SONGS, QueryableStoreTypes.<Long, Song>keyValueStore());
return songsStore.all().hasNext();
} catch (Exception e) {
return false;
}
}, MAX_WAIT_MS, KafkaMusicExample.ALL_SONGS + " should be non-empty");
final IntFunction<SongPlayCountBean> intFunction = index -> {
final Song song = songs.get(index);
return songCountPlayBean(song, 6L - (index % 6));
};
// Verify that the charts are as expected
verifyChart(baseUrl + "/charts/genre/punk",
client,
IntStream.range(0, 5).mapToObj(intFunction).collect(Collectors.toList()));
verifyChart(baseUrl + "/charts/genre/hip hop",
client,
IntStream.range(6, 11).mapToObj(intFunction).collect(Collectors.toList()));
verifyChart(baseUrl + "/charts/top-five",
client,
Arrays.asList(songCountPlayBean(songs.get(0), 6L),
songCountPlayBean(songs.get(6), 6L),
songCountPlayBean(songs.get(1), 5L),
songCountPlayBean(songs.get(7), 5L),
songCountPlayBean(songs.get(2), 4L)
)
);
}
private SongPlayCountBean songCountPlayBean(final Song song, final long plays) {
return new SongPlayCountBean(song.getArtist(),
song.getAlbum(),
song.getName(),
plays);
}
private void verifyChart(final String url,
final Client client,
final List<SongPlayCountBean> expectedChart)
throws InterruptedException {
final Invocation.Builder genreChartRequest = client.target(url)
.request(MediaType.APPLICATION_JSON_TYPE);
// Wait until we have 5 items available in the chart
TestUtils.waitForCondition(() -> {
try {
final List<SongPlayCountBean>
chart =
genreChartRequest.get(new GenericType<List<SongPlayCountBean>>() {
});
return chart.size() == 5;
} catch (Exception e) {
return false;
}
}, MAX_WAIT_MS, "chart should have 5 items");
final List<SongPlayCountBean>
chart =
genreChartRequest.get(new GenericType<List<SongPlayCountBean>>() {
});
assertThat(chart, is(expectedChart));
}
private void sendPlayEvents(final int count, final Song song,
final KafkaProducer<String, PlayEvent> producer) {
for (int i = 0; i < count; i++) {
producer.send(new ProducerRecord<>(
KafkaMusicExample.PLAY_EVENTS,
"UK",
new PlayEvent(song.getId(), 60000L)));
}
producer.flush();
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。