Skip to content

Commit

Permalink
[1.10.1-rc] Version 1.10.1 (#2204)
Browse files Browse the repository at this point in the history
  • Loading branch information
vgarciabnz authored Aug 14, 2024
2 parents 1505be7 + 0415e36 commit d72cace
Show file tree
Hide file tree
Showing 351 changed files with 8,291 additions and 8,111 deletions.
1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pipeline {
steps {
script {
echo 'Running Check style and quality'
sh 'chmod +x ./runChecks.sh'
sh './runChecks.sh'
}
}
Expand Down
5 changes: 1 addition & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,7 @@ allprojects {
}
}

tasks.register("clean", Delete::class) {
delete(rootProject.layout.buildDirectory)
}

apply(from = "tasks.gradle.kts")

subprojects {
apply(plugin = "org.jlleitschuh.gradle.ktlint")
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/*
* Copyright (c) 2004-2023, University of Oslo
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* Neither the name of the HISP project nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.hisp.dhis.android.core.arch.repositories.collection

import com.google.common.truth.Truth.assertThat
import org.hisp.dhis.android.core.utils.integration.mock.BaseMockIntegrationTestFullDispatcher
import org.hisp.dhis.android.core.utils.runner.D2JunitRunner
import org.junit.Test
import org.junit.runner.RunWith

@RunWith(D2JunitRunner::class)
class CollectionRepositoryOneMethodMockIntegrationShould : BaseMockIntegrationTestFullDispatcher() {
private val birthUid = "m2jTvAj5kkm"
private val defaultUid = "p0KPaWEg3cf"

@Test
fun get_first_object_without_filters() {
val combo = d2.categoryModule().categoryCombos()
.one()
.blockingGet()

assertThat(combo!!.uid()).isEqualTo(birthUid)
}

@Test
fun get_first_when_filter_limits_to_one_object() {
val combo = d2.categoryModule().categoryCombos()
.byName().eq("Births")
.one()
.blockingGet()

assertThat(combo!!.uid()).isEqualTo(birthUid)
}

@Test
fun get_first_when_filter_limits_to_other_object() {
val combo = d2.categoryModule().categoryCombos()
.byIsDefault().isTrue
.one()
.blockingGet()

assertThat(combo!!.uid()).isEqualTo(defaultUid)
}

@Test
fun get_first_when_filter_limits_to_no_objects() {
val combo = d2.categoryModule().categoryCombos()
.byName().eq("Wrong name")
.one()
.blockingGet()

assertThat(combo).isNull()
}

@Test
fun get_with_all_children_returns_object_children() {
val combo = d2.categoryModule().categoryCombos()
.withCategories()
.one()
.blockingGet()

assertThat(combo!!.uid()).isEqualTo(birthUid)
assertThat(combo.categories()!!.size).isEqualTo(2)
}
}
Loading

0 comments on commit d72cace

Please sign in to comment.