blob: d489fca8e4aff02977453479b934bbfe42df691f [file] [log] [blame]
#!groovy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
t = new TestScripts(args)
/*
* Run the Direct quickstart from https://beam.apache.org/get-started/quickstart-java/
*/
t.describe 'Run Apache Beam Java SDK Quickstart - Direct'
t.intent 'Gets the WordCount Example Code'
QuickstartArchetype.generate(t)
t.intent 'Runs the WordCount Code with Direct runner'
// Run the wordcount example with the Direct runner
t.run """mvn compile exec:java -q \
-Dmaven.wagon.http.retryHandler.class=default \
-Dmaven.wagon.http.retryHandler.count=5 \
-Dmaven.wagon.http.pool=false \
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \
-Dhttp.keepAlive=false \
-Dexec.mainClass=org.apache.beam.examples.WordCount \
-Dexec.args="--inputFile=pom.xml --output=counts" \
-Pdirect-runner"""
// Verify text from the pom.xml input file
String result = t.run "grep Foundation counts*"
t.see "Foundation: 1", result
// Clean up
t.done()