Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSP-35974: Update one usage example #2781

Merged
merged 31 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2a01a1f
DOCSP-35974: Update one usage example
norareidy Mar 13, 2024
5d5bc52
fixes
norareidy Mar 13, 2024
de2fb19
other usage ex changes
norareidy Mar 15, 2024
0f0479c
reworking the example
norareidy Mar 19, 2024
6edf281
add tip, spacing
norareidy Mar 19, 2024
8bcf1a7
restructuring
norareidy Mar 20, 2024
a1238b0
reword tip
norareidy Mar 20, 2024
30be915
fixes
norareidy Mar 20, 2024
3f9ef3d
edits
norareidy Mar 20, 2024
82a4f20
reword
norareidy Mar 20, 2024
74db7ef
add more running info
norareidy Mar 21, 2024
c9e279c
small change
norareidy Mar 21, 2024
ae4bb21
edits
norareidy Mar 22, 2024
5ceb6b3
source constant
norareidy Mar 22, 2024
97187cd
test file
norareidy Mar 25, 2024
d9aa3c1
move test file
norareidy Mar 25, 2024
0008e18
single quotes
norareidy Mar 25, 2024
cb10358
print syntax
norareidy Mar 26, 2024
6c3d851
print statement again
norareidy Mar 26, 2024
71f72e7
Merge remote-tracking branch 'upstream/4.1' into DOCSP-35974-update-o…
norareidy Mar 26, 2024
f3ac9c8
JT feedback
norareidy Mar 26, 2024
b237a86
apply phpcbf formatting
norareidy Mar 26, 2024
4856810
code
norareidy Mar 26, 2024
777e3cb
code fix
norareidy Mar 26, 2024
d67827a
apply phpcbf formatting
norareidy Mar 26, 2024
abab190
JT feedback
norareidy Mar 28, 2024
d7b03f1
Merge branch 'DOCSP-35974-update-one-usage-ex' of github.com:norareid…
norareidy Mar 28, 2024
aabaf2c
Merge remote-tracking branch 'upstream/4.1' into pr/2781
GromNaN Apr 2, 2024
2fb18a5
Fix UpdateOneTest example
GromNaN Apr 2, 2024
3f9e394
Merge remote-tracking branch 'upstream/4.1' into DOCSP-35974-update-o…
norareidy Apr 3, 2024
1c90a28
add to TOC
norareidy Apr 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/includes/usage-examples/Movie.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace App\Models;

use MongoDB\Laravel\Eloquent\Model;

class Movie extends Model
{
protected $connection = 'mongodb';
protected $collection = 'movies';
protected $fillable = ['title', 'year', 'runtime', 'imdb', 'plot'];
}
48 changes: 48 additions & 0 deletions docs/includes/usage-examples/UpdateOneTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get the following error when running this file:
Could not open input file: vendor/bin/phpunit

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That would get installed by running composer update from the repository root to install all dependencies in composer.json (both require and require-dev).

Was the error above based on following instructions in Contributing: Run Tests. It's not clear to me how this file would even be picked up by the normal test suite (files under tests/), so I'll defer to @GromNaN to follow up here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm following these instructions, but I was running the command in the wrong folder; here's what I get now:

There was 1 PHPUnit test runner warning:

1) No tests found in class "App\Http\Controllers\UpdateOneTest".

No tests executed!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#2795 should address this.


declare(strict_types=1);

namespace App\Http\Controllers;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GromNaN: more generally I don't see a clear benefit to putting PHPUnit test files outside of the tests/ directory like this. This differs from the PHPLIB approach, where we run example/docs scripts from ExamplesTest and assert output.

Based on the current PHPUnit configuration, these files won't be picked up by the test suite (nor tools like phpcs and phpstan). It might make more sense to organize these files within the actual test suite and then have docs refer to them there. And in that case, we can use meaningful namespaces.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The namespace is of no particular interest. I think we'll come back to it to clean it up.


use App\Models\Movie;
use MongoDB\Laravel\Tests\TestCase;

class UpdateOneTest extends TestCase
{
/**
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testUpdateOne(): void
{
require_once __DIR__ . '/Movie.php';

Movie::truncate();
Movie::insert([
[
'title' => 'Carol',
'imdb' => [
'rating' => 7.2,
'votes' => 125000,
],
],
]);

// begin-update-one
$updates = Movie::where('title', 'Carol')
->orderBy('_id')
->first()
->update([
'imdb' => [
'rating' => 7.3,
'votes' => 142000,
],
]);

echo 'Updated documents: ' . $updates;
// end-update-one

$this->assertTrue($updates);
$this->expectOutputString('Updated documents: 1');
}
}
8 changes: 7 additions & 1 deletion docs/usage-examples.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,10 @@ a result. To run the operation, you can copy the sample code to a controller end
Laravel application.

To view the expected output of the operation, you can add a web route to your application that
calls the controller function and returns the result to a web interface.
calls the controller function and returns the result to a web interface.

.. toctree::
:titlesonly:
:maxdepth: 1

/usage-examples/updateOne
67 changes: 67 additions & 0 deletions docs/usage-examples/updateOne.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
.. _laravel-update-one-usage:

=================
Update a Document
=================

.. facet::
:name: genre
:values: reference

.. meta::
:keywords: update one, modify, code example

.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol

You can update a document in a collection by retrieving a single document and calling
the ``update()`` method on an Eloquent model or a query builder.

Pass a query filter to the ``where()`` method, sort the matching documents, and call the
``first()`` method to retrieve only the first document. Then, update this matching document
by passing your intended document changes to the ``update()`` method.

Example
-------

This usage example performs the following actions:

- Uses the ``Movie`` Eloquent model to represent the ``movies`` collection in the
``sample_mflix`` database.
- Updates a document from the ``movies`` collection that matches a query filter.

The example calls the following methods on the ``Movie`` model:

- ``where()``: matches documents in which the value of the ``title`` field is ``'Carol'``.
- ``orderBy()``: sorts matched documents by their ascending ``_id`` values.
- ``first()``: retrieves only the first matching document.
- ``update()``: updates the value of the ``imdb.rating`` nested field to from ``6.9`` to
``7.3``. This method also updates the ``imdb.votes`` nested field from ``493`` to ``142000``.

.. io-code-block::
:copyable: true

.. input:: ../includes/usage-examples/UpdateOneTest.php
:start-after: begin-update-one
:end-before: end-update-one
:language: php
:dedent:

.. output::
:language: console
:visible: false

Updated documents: 1

For instructions on editing your Laravel application to run the usage example, see the
:ref:`Usage Example landing page <laravel-usage-examples>`.

.. tip::

To learn more about updating data with {+odm-short+}, see the `Updates
<https://laravel.com/docs/{+laravel-docs-version+}/eloquent#updates>`__ section of the
Laravel documentation.

Loading