Business rules, yes; infrastructure, no.
In short, business rules should run entirely in memory. If they can't, then they depend on the infrastructure choices of a specific application, and this violates the Dependency Inversion Principle in its most fundamental way.
If we design our Entities as snapshots of a persistent "thing", then we can treat them almost as Values, and in that case, we wouldn't need to extract interfaces for/mock them. An Entity equates to a Value + Behavior. If that behavior becomes sufficiently complicated or we want to make it Pluggable, then we reach for an interface/mock.
The problem comes when we let an Entity depend (even through an interface!) on an application-level Service. We have to approach that with caution, even with interfaces/mocks involved. Abstractions can leak very easily in that case, and I see exactly that happen all over the place. For example, an authorisation policy might make sense as a business policy, but persistence acts only as an application policy. I design the application to persist the Entities, rather than the Entities to persist themselves. This makes ORMs of dubious value. Again, use with care.
At the same time, some authorisation policies only apply to a specific application (user X can access page Y) and others to the underlying business (only Gold members can schedule appointments during these times). I prefer to separate those from one another, and I don't always find it clear how to distinguish them. In those cases, I care more about "cost of change" than "getting it right".