Search in sources :

Example 31 with TestDescription

use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.

the class ShouldHaveAuthority_create_Test method should_create_error_message_for_url.

@Test
public void should_create_error_message_for_url() throws Exception {
    URL url = new URL("http://assertj.org:8080/news");
    String error = shouldHaveAuthority(url, "foo.org").create(new TestDescription("TEST"));
    assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting authority of%n" + "  <http://assertj.org:8080/news>%n" + "to be:%n" + "  <\"foo.org\">%n" + "but was:%n" + "  <\"assertj.org:8080\">"));
}
Also used : TestDescription(org.assertj.core.internal.TestDescription) URL(java.net.URL) Test(org.junit.Test)

Example 32 with TestDescription

use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.

the class ShouldHaveFragment_create_Test method should_create_error_message_for_has_fragment.

@Test
public void should_create_error_message_for_has_fragment() throws Exception {
    URI uri = new URI("http://assertj.org/news#print");
    String error = shouldHaveFragment(uri, "foo").create(new TestDescription("TEST"));
    assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting fragment of%n" + "  <http://assertj.org/news#print>%n" + "to be:%n" + "  <\"foo\">%n" + "but was:%n" + "  <\"print\">"));
}
Also used : TestDescription(org.assertj.core.internal.TestDescription) URI(java.net.URI) Test(org.junit.Test)

Example 33 with TestDescription

use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.

the class ShouldHaveFragment_create_Test method should_create_error_message_for_has_no_fragment.

@Test
public void should_create_error_message_for_has_no_fragment() throws Exception {
    URI uri = new URI("http://assertj.org/news#print");
    String error = shouldHaveFragment(uri, null).create(new TestDescription("TEST"));
    assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting URI:%n" + "  <http://assertj.org/news#print>%n" + "not to have a fragment but had:%n" + "  <\"print\">"));
}
Also used : TestDescription(org.assertj.core.internal.TestDescription) URI(java.net.URI) Test(org.junit.Test)

Example 34 with TestDescription

use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.

the class ShouldHaveParameter_create_Test method should_create_error_message_for_url_with_wrong_parameter_value.

@Test
public void should_create_error_message_for_url_with_wrong_parameter_value() throws Exception {
    URL url = new URL("http://assertj.org/news?article=11");
    String error = shouldHaveParameter(url, "article", "10", newArrayList("11")).create(new TestDescription("TEST"));
    assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting:%n" + "  <http://assertj.org/news?article=11>%n" + "to have parameter:%n" + "  <\"article\">%n" + "with value:%n" + "  <\"10\">%n" + "but had value:%n" + "  <\"11\">"));
}
Also used : TestDescription(org.assertj.core.internal.TestDescription) URL(java.net.URL) Test(org.junit.Test)

Example 35 with TestDescription

use of org.assertj.core.internal.TestDescription in project assertj-core by joel-costigliola.

the class ShouldHaveParameter_create_Test method should_create_error_message_for_url_with_no_parameter_that_has_one_without_value.

@Test
public void should_create_error_message_for_url_with_no_parameter_that_has_one_without_value() throws Exception {
    URL url = new URL("http://assertj.org/news?article");
    String error = shouldHaveNoParameter(url, "article", null, null).create(new TestDescription("TEST"));
    assertThat(error).isEqualTo(format("[TEST] %n" + "Expecting:%n" + "  <http://assertj.org/news?article>%n" + "not to have parameter:%n" + "  <\"article\">%n" + "with no value, but did"));
}
Also used : TestDescription(org.assertj.core.internal.TestDescription) URL(java.net.URL) Test(org.junit.Test)

Aggregations

TestDescription (org.assertj.core.internal.TestDescription)126 Test (org.junit.Test)112 StandardRepresentation (org.assertj.core.presentation.StandardRepresentation)48 URI (java.net.URI)27 URL (java.net.URL)24 CompletableFuture (java.util.concurrent.CompletableFuture)9 Before (org.junit.Before)9 Description (org.assertj.core.description.Description)4 Path (java.nio.file.Path)2 EmptyTextDescription.emptyDescription (org.assertj.core.description.EmptyTextDescription.emptyDescription)2 File (java.io.File)1 ArrayList (java.util.ArrayList)1 LinkedHashMap (java.util.LinkedHashMap)1 List (java.util.List)1 AtomicStampedReference (java.util.concurrent.atomic.AtomicStampedReference)1 ShouldHaveToString.shouldHaveToString (org.assertj.core.error.ShouldHaveToString.shouldHaveToString)1 Representation (org.assertj.core.presentation.Representation)1 CaseInsensitiveStringComparator (org.assertj.core.util.CaseInsensitiveStringComparator)1