Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Add tests for non-mockable classes#1305

Open
S-YED wants to merge1 commit intomockk:master
base:master
Choose a base branch
Loading
fromS-YED:master

Conversation

S-YED
Copy link

Description

This pull request adds tests for non-mockable classes to ensure that attempting to mock these classes results in the expected warnings or exceptions. The tests cover commonly non-mockable classes such asSystem,File, andPath.

Changes

  • AddedNonMockableClassesTest.kt inmodules/mockk/src/jvmTest/kotlin/io/mockk/.

  • Included test cases to verify that mocking non-mockable classes throwsIllegalArgumentException.

Motivation and Context

These tests are added to improve the robustness of the library by explicitly handling non-mockable classes and ensuring that appropriate exceptions are thrown when such classes are mocked.

How Has This Been Tested?

  • Ran the tests locally using./gradlew test.

  • Verified that the tests pass and the correct exceptions are thrown.

Related Issue

(If applicable, link to the issue here)

@Raibaz
Copy link
Collaborator

Thanks for looking into this!

However, I think throwing exceptions by default is a bit too much and will likely break too many existing applications; I think it'd be better to just log a warning.

private val nonMockableClasses = listOf(

System::class,

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

I think you have a code formatter that adds a ton of newlines. Can you please not add needless empty lines?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Sure i will remove em

import kotlin.reflect.KClass


inline fun <reified T : Any> mockk(
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Also, this is just a wrapper for theMockKDsl class, I don't think it should contain any business logic.

Can you please move the check toAbstractMockFactory?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

SURE!!!


@Test

fun `should throw exception when mocking System class`() {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

I think you can make this test parameterized and pass the list of non mockable classes.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Can you Help me with it ?

@Raibaz
Copy link
Collaborator

Can you also please make sure the PR builds?

S-YED reacted with thumbs up emoji

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@RaibazRaibazRaibaz requested changes

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

2 participants
@S-YED@Raibaz

[8]ページ先頭

©2009-2025 Movatter.jp