Git Product home page Git Product logo

Comments (2)

Zizaco avatar Zizaco commented on June 28, 2024

$this->be($user)? But where?

Can you provide more details on this or an example on how can we reproduce this erro~r? What is the value of the $user variable and what is the scope of $this->

Once again, in var_dump($user->username) what is the value of $user? Are you sure that the user that you are creating meet the minium needs of ConfideUser?

/**
     * Ardent validation rules
     *
     * @var array
     */
    public static $rules = array(
        'username' => 'required|alpha_dash|unique:users',
        'email' => 'required|email|unique:users',
        'password' => 'required|between:4,11|confirmed',
        'password_confirmation' => 'between:4,11',
    );

I will re-open this issue as soon as we can reproduce the problem/error.

from confide.

dekpient avatar dekpient commented on June 28, 2024

It's in unit tests. The following is from Laravel docs:
The TestCase class contains several helper methods to make testing your application easier.
You may set the currently authenticated user using the be method:
Setting The Currently Authenticated User

$user = new User(array('name' => 'John'));
$this->be($user);

It doesn't work with Confide's user model. I created another normal User model to make sure, and it worked. It's weird though. So let me explain.
For example, if a logged in user goes to homepage, I'll redirect the user to dashboard, and I test this in unit test, it will pass the test. But if my controller action being tested does some processing on the current user (like getting its data), the test will fail, and it will be like the user is not authenticated.
Right now, my work around is explicitly call Auth::attempt() in the tests.

Cheers

from confide.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.