mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-03 10:54:38 -05:00
47 lines
1.7 KiB
Kotlin
47 lines
1.7 KiB
Kotlin
package suwayomi.tachidesk.manga.controller
|
|
|
|
/*
|
|
* Copyright (C) Contributors to the Suwayomi project
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
import org.jetbrains.exposed.sql.deleteAll
|
|
import org.jetbrains.exposed.sql.transactions.transaction
|
|
import org.junit.jupiter.api.AfterEach
|
|
import org.junit.jupiter.api.Assertions.assertEquals
|
|
import org.junit.jupiter.api.Test
|
|
import org.junit.jupiter.api.TestInstance
|
|
import org.junit.jupiter.api.TestInstance.Lifecycle.PER_CLASS
|
|
import suwayomi.tachidesk.manga.impl.Category
|
|
import suwayomi.tachidesk.manga.model.table.CategoryTable
|
|
import suwayomi.tachidesk.ApplicationTest
|
|
|
|
@TestInstance(PER_CLASS)
|
|
internal class SourceControllerTest : ApplicationTest() {
|
|
@Test
|
|
fun categoryReorder() {
|
|
Category.createCategory("foo")
|
|
Category.createCategory("bar")
|
|
val cats = Category.getCategoryList()
|
|
val foo = cats.asSequence().filter { it.name == "foo" }.first()
|
|
val bar = cats.asSequence().filter { it.name == "bar" }.first()
|
|
assertEquals(1, foo.order)
|
|
assertEquals(2, bar.order)
|
|
Category.reorderCategory(1, 2)
|
|
val catsReordered = Category.getCategoryList()
|
|
val fooReordered = catsReordered.asSequence().filter { it.name == "foo" }.first()
|
|
val barReordered = catsReordered.asSequence().filter { it.name == "bar" }.first()
|
|
assertEquals(2, fooReordered.order)
|
|
assertEquals(1, barReordered.order)
|
|
}
|
|
|
|
@AfterEach
|
|
internal fun tearDown() {
|
|
transaction {
|
|
CategoryTable.deleteAll()
|
|
}
|
|
}
|
|
}
|