blob: 95677c6866763daf3bdbf6e498a484c9c8196292 [file] [log] [blame]
/*
* 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.
*/
package org.apache.amaterasu.leader.common.dsl
import org.apache.amaterasu.common.dataobjects.ActionData
import org.apache.curator.framework.CuratorFrameworkFactory
import org.apache.curator.retry.ExponentialBackoffRetry
import org.apache.curator.test.TestingServer
import org.apache.zookeeper.CreateMode
import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.given
import org.jetbrains.spek.api.dsl.it
import java.util.concurrent.LinkedBlockingQueue
import kotlin.test.assert
import kotlin.test.assertEquals
/*
this Spek tests how the JobParser handles artifacts and repositories
*/
object JobParserArtifactTests : Spek({
val retryPolicy = ExponentialBackoffRetry(1000, 3)
val server = TestingServer(2182, true)
val client = CuratorFrameworkFactory.newClient(server.connectString, retryPolicy)
client.start()
val jobId = "job_${System.currentTimeMillis()}"
val yaml = this::class.java.getResource("/artifact-maki.yaml").readText()
val queue = LinkedBlockingQueue<ActionData>()
// this will be performed by the job bootstrapper
client.create().withMode(CreateMode.PERSISTENT).forPath("/$jobId")
given("a valid maki.yaml file ") {
val job = JobParser.parse(jobId, yaml, queue, client, 1)
it("loads the amaterasu-artifact-test job") {
assertEquals(job.name, "amaterasu-artifact-test")
}
it("also loads the artifact"){
assert( job.registeredActions["0000000000"]!!.data.hasArtifact)
}
it("also loads the repo"){
val repo = job.registeredActions["0000000000"]!!.data.repo
//TODO: replace with an ASF repo
assertEquals(repo.url, "https://packagecloud.io/yanivr/amaterasu-demo/maven2" )
}
}
})