-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2292 from element-hq/feature/bma/gitSha
Git sha and branch in log
- Loading branch information
Showing
13 changed files
with
141 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...src/test/kotlin/io/element/android/features/preferences/impl/root/FakeVersionFormatter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright (c) 2024 New Vector Ltd | ||
* | ||
* 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.element.android.features.preferences.impl.root | ||
|
||
class FakeVersionFormatter : VersionFormatter { | ||
override fun get(): String { | ||
return "A Version" | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
...src/test/kotlin/io/element/android/features/preferences/impl/root/VersionFormatterTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright (c) 2024 New Vector Ltd | ||
* | ||
* 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.element.android.features.preferences.impl.root | ||
|
||
import com.google.common.truth.Truth.assertThat | ||
import io.element.android.libraries.matrix.test.core.aBuildMeta | ||
import io.element.android.services.toolbox.test.strings.FakeStringProvider | ||
import kotlinx.coroutines.test.runTest | ||
import org.junit.Test | ||
|
||
class VersionFormatterTest { | ||
@Test | ||
fun `version formatter should return simplified version for other branch`() = runTest { | ||
val sut = DefaultVersionFormatter( | ||
stringProvider = FakeStringProvider(defaultResult = VERSION), | ||
buildMeta = aBuildMeta(gitBranchName = "main") | ||
) | ||
assertThat(sut.get()).isEqualTo(VERSION) | ||
} | ||
|
||
@Test | ||
fun `version formatter should return simplified version for main branch`() = runTest { | ||
val sut = DefaultVersionFormatter( | ||
stringProvider = FakeStringProvider(defaultResult = VERSION), | ||
buildMeta = aBuildMeta( | ||
gitBranchName = "branch", | ||
gitRevision = "1234567890", | ||
) | ||
) | ||
assertThat(sut.get()).isEqualTo("$VERSION\nbranch\n1234567890") | ||
} | ||
|
||
companion object { | ||
const val VERSION = "version" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
* | ||
* 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 extension | ||
|
||
import org.gradle.api.Project | ||
import java.io.ByteArrayOutputStream | ||
import java.io.IOException | ||
|
||
private fun Project.runCommand(cmd: String): String { | ||
val outputStream = ByteArrayOutputStream() | ||
val errorStream = ByteArrayOutputStream() | ||
project.exec { | ||
commandLine = cmd.split(" ") | ||
standardOutput = outputStream | ||
errorOutput = errorStream | ||
} | ||
if (errorStream.size() > 0) { | ||
println("Error while running command: $cmd") | ||
throw IOException(String(errorStream.toByteArray())) | ||
} | ||
return String(outputStream.toByteArray()).trim() | ||
} | ||
|
||
fun Project.gitRevision() = runCommand("git rev-parse --short=8 HEAD") | ||
|
||
fun Project.gitBranchName() = runCommand("git rev-parse --abbrev-ref HEAD") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters