Laravel 5: test return redirect with sessionIn Laravel 5, why is Request::root() different when called during phpunit test?ajax post in laravel 5 return error 500 (Internal Server Error)How to redirect url from angularjs login submission via laravel 5Session variable doesn't persist during redirect in laravelLaravel redirect withErrors not workingLaravel 5 how to return to a POST request with validation errorsAPI - validating request in LaravelLaravel: redirect to login page if session not setLaravel Testing Registration redirectionLaravel 5.5 Auth status in session is lost after redirect to custom url (instead of home)

What does the same-ish mean?

How to travel to Japan while expressing milk?

What is "[.exe" file - Cygwin shell on Windows 10

Was the Stack Exchange "Happy April Fools" page fitting with the '90's code?

OP Amp not amplifying audio signal

Finding the reason behind the value of the integral.

How seriously should I take size and weight limits of hand luggage?

What are the G forces leaving Earth orbit?

Is it possible to create a QR code using text?

Can compressed videos be decoded back to their uncompresed original format?

What historical events would have to change in order to make 19th century "steampunk" technology possible?

Forgetting the musical notes while performing in concert

How can a day be of 24 hours?

Implication of namely

What exactly is ineptocracy?

Can someone clarify Hamming's notion of important problems in relation to modern academia?

Finitely generated matrix groups whose eigenvalues are all algebraic

Can a virus destroy the BIOS of a modern computer?

How could indestructible materials be used in power generation?

Could neural networks be considered metaheuristics?

Could the museum Saturn V's be refitted for one more flight?

GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?

Why was the shrink from 8″ made only to 5.25″ and not smaller (4″ or less)

Obtaining database information and values in extended properties



Laravel 5: test return redirect with session


In Laravel 5, why is Request::root() different when called during phpunit test?ajax post in laravel 5 return error 500 (Internal Server Error)How to redirect url from angularjs login submission via laravel 5Session variable doesn't persist during redirect in laravelLaravel redirect withErrors not workingLaravel 5 how to return to a POST request with validation errorsAPI - validating request in LaravelLaravel: redirect to login page if session not setLaravel Testing Registration redirectionLaravel 5.5 Auth status in session is lost after redirect to custom url (instead of home)













0















I have an insert method in Laravel, that return a message



if ($update === true) 
return redirect(route('settings-cloudflare'))
->with('success', trans('common.operation_completed_successfully'));
// validation ok
else {


How can I test that redirected view has "success" inside?



My test is:



 $response = $this->followingRedirects()->actingAs($user)->post(Route('settings-cloudflare-store'),$data);
dd(session()->all());


But session doesn't have "success" inside.



This is the dd of session:



array:3 [
"_token" => "2jV8sVgRluET9UCng2HzqDYOgSkTVYMqJTT20MsP"
"_flash" => array:2 [
"new" => []
"old" => []
]
"_previous" => array:1 [
"url" => "http://192.168.1.101/settings/cloudflare"
]
]


Thank you very much










share|improve this question
























  • Maybe this will help? laravel.com/docs/5.8/http-tests#assert-session-has

    – danronmoon
    Mar 21 at 20:34











  • I did print directly the session, that hasnt my "success" inside...

    – sineverba
    Mar 21 at 21:06











  • so $response->assertSessionHas('success') didn't work?

    – danronmoon
    Mar 21 at 21:19











  • No, it didn't work. I did print the dd session.. thank you

    – sineverba
    Mar 22 at 7:16















0















I have an insert method in Laravel, that return a message



if ($update === true) 
return redirect(route('settings-cloudflare'))
->with('success', trans('common.operation_completed_successfully'));
// validation ok
else {


How can I test that redirected view has "success" inside?



My test is:



 $response = $this->followingRedirects()->actingAs($user)->post(Route('settings-cloudflare-store'),$data);
dd(session()->all());


But session doesn't have "success" inside.



This is the dd of session:



array:3 [
"_token" => "2jV8sVgRluET9UCng2HzqDYOgSkTVYMqJTT20MsP"
"_flash" => array:2 [
"new" => []
"old" => []
]
"_previous" => array:1 [
"url" => "http://192.168.1.101/settings/cloudflare"
]
]


Thank you very much










share|improve this question
























  • Maybe this will help? laravel.com/docs/5.8/http-tests#assert-session-has

    – danronmoon
    Mar 21 at 20:34











  • I did print directly the session, that hasnt my "success" inside...

    – sineverba
    Mar 21 at 21:06











  • so $response->assertSessionHas('success') didn't work?

    – danronmoon
    Mar 21 at 21:19











  • No, it didn't work. I did print the dd session.. thank you

    – sineverba
    Mar 22 at 7:16













0












0








0








I have an insert method in Laravel, that return a message



if ($update === true) 
return redirect(route('settings-cloudflare'))
->with('success', trans('common.operation_completed_successfully'));
// validation ok
else {


How can I test that redirected view has "success" inside?



My test is:



 $response = $this->followingRedirects()->actingAs($user)->post(Route('settings-cloudflare-store'),$data);
dd(session()->all());


But session doesn't have "success" inside.



This is the dd of session:



array:3 [
"_token" => "2jV8sVgRluET9UCng2HzqDYOgSkTVYMqJTT20MsP"
"_flash" => array:2 [
"new" => []
"old" => []
]
"_previous" => array:1 [
"url" => "http://192.168.1.101/settings/cloudflare"
]
]


Thank you very much










share|improve this question
















I have an insert method in Laravel, that return a message



if ($update === true) 
return redirect(route('settings-cloudflare'))
->with('success', trans('common.operation_completed_successfully'));
// validation ok
else {


How can I test that redirected view has "success" inside?



My test is:



 $response = $this->followingRedirects()->actingAs($user)->post(Route('settings-cloudflare-store'),$data);
dd(session()->all());


But session doesn't have "success" inside.



This is the dd of session:



array:3 [
"_token" => "2jV8sVgRluET9UCng2HzqDYOgSkTVYMqJTT20MsP"
"_flash" => array:2 [
"new" => []
"old" => []
]
"_previous" => array:1 [
"url" => "http://192.168.1.101/settings/cloudflare"
]
]


Thank you very much







laravel-5






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 22 at 7:14







sineverba

















asked Mar 21 at 20:31









sineverbasineverba

1,97331941




1,97331941












  • Maybe this will help? laravel.com/docs/5.8/http-tests#assert-session-has

    – danronmoon
    Mar 21 at 20:34











  • I did print directly the session, that hasnt my "success" inside...

    – sineverba
    Mar 21 at 21:06











  • so $response->assertSessionHas('success') didn't work?

    – danronmoon
    Mar 21 at 21:19











  • No, it didn't work. I did print the dd session.. thank you

    – sineverba
    Mar 22 at 7:16

















  • Maybe this will help? laravel.com/docs/5.8/http-tests#assert-session-has

    – danronmoon
    Mar 21 at 20:34











  • I did print directly the session, that hasnt my "success" inside...

    – sineverba
    Mar 21 at 21:06











  • so $response->assertSessionHas('success') didn't work?

    – danronmoon
    Mar 21 at 21:19











  • No, it didn't work. I did print the dd session.. thank you

    – sineverba
    Mar 22 at 7:16
















Maybe this will help? laravel.com/docs/5.8/http-tests#assert-session-has

– danronmoon
Mar 21 at 20:34





Maybe this will help? laravel.com/docs/5.8/http-tests#assert-session-has

– danronmoon
Mar 21 at 20:34













I did print directly the session, that hasnt my "success" inside...

– sineverba
Mar 21 at 21:06





I did print directly the session, that hasnt my "success" inside...

– sineverba
Mar 21 at 21:06













so $response->assertSessionHas('success') didn't work?

– danronmoon
Mar 21 at 21:19





so $response->assertSessionHas('success') didn't work?

– danronmoon
Mar 21 at 21:19













No, it didn't work. I did print the dd session.. thank you

– sineverba
Mar 22 at 7:16





No, it didn't work. I did print the dd session.. thank you

– sineverba
Mar 22 at 7:16












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288802%2flaravel-5-test-return-redirect-with-session%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288802%2flaravel-5-test-return-redirect-with-session%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript