All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.serpro69.kfaker.provider.Commerce.kt Maven / Gradle / Ivy

package io.github.serpro69.kfaker.provider

import io.github.serpro69.kfaker.*
import io.github.serpro69.kfaker.dictionary.*
import io.github.serpro69.kfaker.provider.unique.LocalUniqueDataProvider
import io.github.serpro69.kfaker.provider.unique.UniqueProviderDelegate

/**
 * [FakeDataProvider] implementation for [CategoryName.COMMERCE] category.
 */
@Suppress("unused")
class Commerce internal constructor(fakerService: FakerService) : AbstractFakeDataProvider(fakerService) {
    override val categoryName = CategoryName.COMMERCE
    override val localUniqueDataProvider = LocalUniqueDataProvider()
    override val unique by UniqueProviderDelegate(localUniqueDataProvider)

    fun department() = resolve("department")

    fun productName(): String {
        val adjective = resolve("product_name", "adjective")
        val material = resolve("product_name", "material")
        val product = resolve("product_name", "product")

        return "$adjective $material $product"
    }

    fun promotionCode(): String {
        val adjective = resolve("promotion_code", "adjective")
        val noun = resolve("promotion_code", "noun")

        return "$adjective $noun"
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy