最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Showing differences between non-matching strings using assertJ - Stack Overflow

programmeradmin1浏览0评论

I'm currently working on a unit test for a kotlin function that will generate a csv file from some model data. I'm running into some strange test failures and the default output from assertJ isn't much help in diagnosing the problem. From what I can tell, the failure is caused by character encoding. The "was expecting X but was Y" message doesn't tell me anything since X and Y appear to be the same. Is there a way to get the test output to display exactly which characters didn't match in the strings?

For reference my test function looks like:

internal fun List<Contact>.buildCsv(dp: INT293DependencyProvider):File
{
    val file = File("/tmp/${dp.outputFileName}.csv")
    file.bufferedWriter(Charsets.ISO_8859_1).use { out ->

            out.write(RaveOutput.HEADER)
            this.forEach {
                out.write(it.toCsvRow())
            }
        }
    return file
}


    @Test
    fun `Test generate csv from contacts`()
    {

        mockContext(300).value().let { context ->
            testInt293DependencyProvider(context).let { dp ->
                javaClass.classLoader.getResourceAsStream("rave-contacts.csv").use { stream ->
                    val expected = IOUtils.toString(stream, Charsets.ISO_8859_1)                   

                    val contacts = listOf(
                        Contact("123456", "foo", "bar", "[email protected]", "5704445555", Type.EMPLOYEE, "fbar"),
                        Contact("654321", "john", "doe", "[email protected]", "+15556667777", Type.STUDENT, "jdoe")
                    )
                    val output = contacts.buildCsv(dp)

                    val actual = IOUtils.toString(output.inputStream(), Charsets.ISO_8859_1)

                    assertNotNull(actual)
                    assertThat(actual).isEqualTo(expected)

                    
                }
            }
        }
    }



[ERROR]   Test.Test generate csv from contacts 
expected: 
  "Unique Loader ID,Last Name,First Name,Registration Email Address,Email Address 2,Email Address 3,Site Username,Role,Mobile Phone 1,Mobile Phone 2,Mobile Phone 3,Mobile 1 Voice,Mobile 2 Voice,Mobile 3 Voice,Mobile Carrier 1,Mobile Carrier 2,Mobile Carrier 3,Landline Phone 1,Landline 1 Extension,Landline Phone 2,Landline 2 Extension,Landline Phone 3,Landline 3 Extension,Language Preference,Notify by SMS,Notify by Email,String Attribute 1,String Attribute 2,String Attribute 3,String Attribute 4,String Attribute 5,String Attribute 6,String Attribute 7,String Attribute 8,String Attribute 9,String Attribute 10,String Attribute 11,String Attribute 12,String Attribute 13,String Attribute 14,String Attribute 15,String Attribute 16,String Attribute 17,String Attribute 18,String Attribute 19,String Attribute 20,Integer Attribute 1,Integer Attribute 2,Integer Attribute 3,Integer Attribute 4,Integer Attribute 5,True/False Attribute 1,True/False Attribute 2,True/False Attribute 3,True/False Attribute 4,True/False Attribute 5,Date Attribute 1,Date Attribute 2,Date Attribute 3,Date Attribute 4,Date Attribute 5
  123456,bar,foo,[email protected],,,fbar,EMPLOYEE,5704445555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
  654321,doe,john,[email protected],,,jdoe,STUDENT,+15556667777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"
 but was: 
  "Unique Loader ID,Last Name,First Name,Registration Email Address,Email Address 2,Email Address 3,Site Username,Role,Mobile Phone 1,Mobile Phone 2,Mobile Phone 3,Mobile 1 Voice,Mobile 2 Voice,Mobile 3 Voice,Mobile Carrier 1,Mobile Carrier 2,Mobile Carrier 3,Landline Phone 1,Landline 1 Extension,Landline Phone 2,Landline 2 Extension,Landline Phone 3,Landline 3 Extension,Language Preference,Notify by SMS,Notify by Email,String Attribute 1,String Attribute 2,String Attribute 3,String Attribute 4,String Attribute 5,String Attribute 6,String Attribute 7,String Attribute 8,String Attribute 9,String Attribute 10,String Attribute 11,String Attribute 12,String Attribute 13,String Attribute 14,String Attribute 15,String Attribute 16,String Attribute 17,String Attribute 18,String Attribute 19,String Attribute 20,Integer Attribute 1,Integer Attribute 2,Integer Attribute 3,Integer Attribute 4,Integer Attribute 5,True/False Attribute 1,True/False Attribute 2,True/False Attribute 3,True/False Attribute 4,True/False Attribute 5,Date Attribute 1,Date Attribute 2,Date Attribute 3,Date Attribute 4,Date Attribute 5
  123456,bar,foo,[email protected],,,fbar,EMPLOYEE,5704445555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
  654321,doe,john,[email protected],,,jdoe,STUDENT,+15556667777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"

I'm currently working on a unit test for a kotlin function that will generate a csv file from some model data. I'm running into some strange test failures and the default output from assertJ isn't much help in diagnosing the problem. From what I can tell, the failure is caused by character encoding. The "was expecting X but was Y" message doesn't tell me anything since X and Y appear to be the same. Is there a way to get the test output to display exactly which characters didn't match in the strings?

For reference my test function looks like:

internal fun List<Contact>.buildCsv(dp: INT293DependencyProvider):File
{
    val file = File("/tmp/${dp.outputFileName}.csv")
    file.bufferedWriter(Charsets.ISO_8859_1).use { out ->

            out.write(RaveOutput.HEADER)
            this.forEach {
                out.write(it.toCsvRow())
            }
        }
    return file
}


    @Test
    fun `Test generate csv from contacts`()
    {

        mockContext(300).value().let { context ->
            testInt293DependencyProvider(context).let { dp ->
                javaClass.classLoader.getResourceAsStream("rave-contacts.csv").use { stream ->
                    val expected = IOUtils.toString(stream, Charsets.ISO_8859_1)                   

                    val contacts = listOf(
                        Contact("123456", "foo", "bar", "[email protected]", "5704445555", Type.EMPLOYEE, "fbar"),
                        Contact("654321", "john", "doe", "[email protected]", "+15556667777", Type.STUDENT, "jdoe")
                    )
                    val output = contacts.buildCsv(dp)

                    val actual = IOUtils.toString(output.inputStream(), Charsets.ISO_8859_1)

                    assertNotNull(actual)
                    assertThat(actual).isEqualTo(expected)

                    
                }
            }
        }
    }



[ERROR]   Test.Test generate csv from contacts 
expected: 
  "Unique Loader ID,Last Name,First Name,Registration Email Address,Email Address 2,Email Address 3,Site Username,Role,Mobile Phone 1,Mobile Phone 2,Mobile Phone 3,Mobile 1 Voice,Mobile 2 Voice,Mobile 3 Voice,Mobile Carrier 1,Mobile Carrier 2,Mobile Carrier 3,Landline Phone 1,Landline 1 Extension,Landline Phone 2,Landline 2 Extension,Landline Phone 3,Landline 3 Extension,Language Preference,Notify by SMS,Notify by Email,String Attribute 1,String Attribute 2,String Attribute 3,String Attribute 4,String Attribute 5,String Attribute 6,String Attribute 7,String Attribute 8,String Attribute 9,String Attribute 10,String Attribute 11,String Attribute 12,String Attribute 13,String Attribute 14,String Attribute 15,String Attribute 16,String Attribute 17,String Attribute 18,String Attribute 19,String Attribute 20,Integer Attribute 1,Integer Attribute 2,Integer Attribute 3,Integer Attribute 4,Integer Attribute 5,True/False Attribute 1,True/False Attribute 2,True/False Attribute 3,True/False Attribute 4,True/False Attribute 5,Date Attribute 1,Date Attribute 2,Date Attribute 3,Date Attribute 4,Date Attribute 5
  123456,bar,foo,[email protected],,,fbar,EMPLOYEE,5704445555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
  654321,doe,john,[email protected],,,jdoe,STUDENT,+15556667777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"
 but was: 
  "Unique Loader ID,Last Name,First Name,Registration Email Address,Email Address 2,Email Address 3,Site Username,Role,Mobile Phone 1,Mobile Phone 2,Mobile Phone 3,Mobile 1 Voice,Mobile 2 Voice,Mobile 3 Voice,Mobile Carrier 1,Mobile Carrier 2,Mobile Carrier 3,Landline Phone 1,Landline 1 Extension,Landline Phone 2,Landline 2 Extension,Landline Phone 3,Landline 3 Extension,Language Preference,Notify by SMS,Notify by Email,String Attribute 1,String Attribute 2,String Attribute 3,String Attribute 4,String Attribute 5,String Attribute 6,String Attribute 7,String Attribute 8,String Attribute 9,String Attribute 10,String Attribute 11,String Attribute 12,String Attribute 13,String Attribute 14,String Attribute 15,String Attribute 16,String Attribute 17,String Attribute 18,String Attribute 19,String Attribute 20,Integer Attribute 1,Integer Attribute 2,Integer Attribute 3,Integer Attribute 4,Integer Attribute 5,True/False Attribute 1,True/False Attribute 2,True/False Attribute 3,True/False Attribute 4,True/False Attribute 5,Date Attribute 1,Date Attribute 2,Date Attribute 3,Date Attribute 4,Date Attribute 5
  123456,bar,foo,[email protected],,,fbar,EMPLOYEE,5704445555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
  654321,doe,john,[email protected],,,jdoe,STUDENT,+15556667777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"
Share Improve this question asked Apr 1 at 18:38 pbuchheitpbuchheit 1,7012 gold badges28 silver badges63 bronze badges 3
  • 1 To determine what the actual difference is, why not add debug code that compares actual and expected char by char? – David Soroko Commented Apr 1 at 18:53
  • 1 Would you be able to raise an issue to AssertJ with a reproducible test ? – Joel Costigliola Commented Apr 2 at 9:52
  • Is it the case that assertThat(String).isEqualTo(String) is expected to highlight a mismatch and a specially crafted test is required to reproduce a scenario where that is failing? – David Soroko Commented Apr 2 at 16:45
Add a comment  | 

1 Answer 1

Reset to default 1

Give a try to inHexadecimal(), that should produce an output with the hex code of the characters and you should find the difference (in hexa of course)

Ex:

 // With standard message:

 assertThat("µµµ").contains("μμμ");

 java.lang.AssertionError:
 Expecting:
   <"µµµ">
 to contain:
   <"μμμ">

// With Hexadecimal message:

 assertThat("µµµ").inHexadecimal().contains("μμμ");

 java.lang.AssertionError:
 Expecting:
   <"['00B5', '00B5', '00B5']">
 to contain:
   <"['03BC', '03BC', '03BC']">
发布评论

评论列表(0)

  1. 暂无评论